summaryrefslogtreecommitdiff
path: root/test/simple/makefile.linux
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.linux
parentf658209d25477c490bf1892e68a0fd1384c1dded (diff)
*** empty log message ***
Diffstat (limited to 'test/simple/makefile.linux')
-rw-r--r--test/simple/makefile.linux18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/simple/makefile.linux b/test/simple/makefile.linux
deleted file mode 100644
index 5d014e0..0000000
--- a/test/simple/makefile.linux
+++ /dev/null
@@ -1,18 +0,0 @@
-CC = gcc
-
-CFLAGS = -I../cd/include -I../iup/include -I/usr/X11R6/include
-
-LIBS = -L../cd/lib/Linux26 -L../iup/lib/Linux26 -L/usr/X11R6/lib \
- -lcdiup -lcd -liup \
- -lXm -lXpm -lXmu -lXt -lXext -lX11
-
-OBJS = simple.o iupmain.o
-
-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: $(OBJS)
- $(CC) -o $@ $(OBJS) $(LIBS)