diff options
Diffstat (limited to 'test/simple/makefile.mingw3')
-rw-r--r-- | test/simple/makefile.mingw3 | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/simple/makefile.mingw3 b/test/simple/makefile.mingw3 deleted file mode 100644 index cf735e8..0000000 --- a/test/simple/makefile.mingw3 +++ /dev/null @@ -1,20 +0,0 @@ -CC = gcc - -CFLAGS = -I../cd/include -I../iup/include - -LIBS = -L../cd/lib/mingw3 -L../iup/lib/mingw3 \ - -lcdiup -lcd -liup \ - -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lole32 -lcomctl32 - -OBJS = simple.o iupmain.o - -all: simple.exe - -simple.o: simple.c simple.h - $(CC) -o $@ -c simple.c $(CFLAGS) - -iupmain.o: iupmain.c simple.h - $(CC) -o $@ -c iupmain.c $(CFLAGS) - -simple.exe: $(OBJS) - $(CC) -o $@ $(OBJS) $(LIBS) |