summaryrefslogtreecommitdiff
path: root/progs/miniglx/Makefile.X11
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-12-12 15:33:51 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-12-12 15:33:51 +0000
commit520ef4b5bcb8e950675c6e0d55cb50dd590c1bc7 (patch)
tree80c898f7b4ba417ea49ad79fadf92c95527099e0 /progs/miniglx/Makefile.X11
parentc882e19643a2403e9a339683649efe9aa182ffea (diff)
new makefiles
Diffstat (limited to 'progs/miniglx/Makefile.X11')
-rw-r--r--progs/miniglx/Makefile.X1164
1 files changed, 0 insertions, 64 deletions
diff --git a/progs/miniglx/Makefile.X11 b/progs/miniglx/Makefile.X11
deleted file mode 100644
index 60eda759ac..0000000000
--- a/progs/miniglx/Makefile.X11
+++ /dev/null
@@ -1,64 +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 = ../..
-
-default: linux-solo
-
-LIBS = $(APP_LIB_DEPS)
-
-SOURCES = miniglxtest.c \
-miniglxsample.c \
-sample_server.c \
-sample_server2.c \
-manytex.c \
-texline.c
-
-OBJECTS = $(SOURCES:.c=.o)
-
-PROGS = $(SOURCES:%.c=%)
-
-INCLUDES = \
- -I. \
- -I$(TOP)/include
-
-##### RULES #####
-
-.SUFFIXES:
-.SUFFIXES: .c
-
-.c:
- $(CC) $(INCLUDES) $(CFLAGS) $< $(LIBS) -o $@
-
-.c.o:
- $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
-
-.S.o:
- $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
-
-
-##### TARGETS #####
-
-targets: depend $(PROGS)
-
-clean:
- rm -f $(PROGS)
- rm -f *.o
-
-
-# Run 'make -f Makefile.X11 dep' to update the dependencies if you change
-# what's included by any source file.
-depend: $(SOURCES)
- makedepend -fdepend -Y $(INCLUDES) \
- $(SOURCES)
-
-
-# Emacs tags
-tags:
- etags `find . -name \*.[ch]` `find ../include`
-
-
-include $(TOP)/Make-config
-
-include depend