summaryrefslogtreecommitdiff
path: root/progs/miniglx/Makefile
diff options
context:
space:
mode:
authorJon Smirl <jonsmirl@gmail.com>2003-08-23 01:12:35 +0000
committerJon Smirl <jonsmirl@gmail.com>2003-08-23 01:12:35 +0000
commitae530c2ff9e2b2c2a258724bfa79ad5ab6dee013 (patch)
tree96688b63b15dcf816bd11d1d9d307ccf6a1dc3e4 /progs/miniglx/Makefile
parent63736723678ef30e7f90835cfbd48c520e39bf11 (diff)
Renaming Makefile to Makefile.X11, added depend support, adjusted paths
Diffstat (limited to 'progs/miniglx/Makefile')
-rw-r--r--progs/miniglx/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/progs/miniglx/Makefile b/progs/miniglx/Makefile
deleted file mode 100644
index 5a781396c7..0000000000
--- a/progs/miniglx/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-
-# Simple makefile for compiling test programs on Linux
-# These programs aren't intended to be included with the normal
-# distro. They're not too interesting but they're good for testing.
-
-TOP = ../..
-
-CC = gcc
-CFLAGS = -g -I$(TOP)/include
-LIBS = -L$(TOP)/lib -lGL -lGLU -lglut -lm -Wl,-rpath,$(TOP)/lib
-
-PROGS = miniglxtest miniglxsample sample_server sample_server2 manytex texline
-
-
-##### RULES #####
-
-.SUFFIXES:
-.SUFFIXES: .c
-
-.c:
- $(CC) $(CFLAGS) $< $(LIBS) -o $@
-
-
-##### TARGETS #####
-
-default: $(PROGS)
-
-clean:
- rm -f $(PROGS)
- rm -f *.o
-