summaryrefslogtreecommitdiff
path: root/test/simple/makefile.mingw3
diff options
context:
space:
mode:
authorscuri <scuri>2009-06-23 22:12:39 +0000
committerscuri <scuri>2009-06-23 22:12:39 +0000
commite44e028c101c1f7ede1a6ba9d3ab25c64e5d8392 (patch)
tree609c0bd702f542d0031d321ce019129f15818cb7 /test/simple/makefile.mingw3
parentf658209d25477c490bf1892e68a0fd1384c1dded (diff)
*** empty log message ***
Diffstat (limited to 'test/simple/makefile.mingw3')
-rw-r--r--test/simple/makefile.mingw320
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)