diff options
author | Brian Paul <[email protected]> | 2004-04-22 00:42:38 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-04-22 00:42:38 +0000 |
commit | 362f1df210d4142259f22d51c5269ed89dc396f3 (patch) | |
tree | 0b1ccc740290aead5c9d5c7f94479a6afcef3c4c /src/glu/mesa | |
parent | f959f6e1dc27c71fc0ccc56e09b29101b3bf3b97 (diff) |
obsolete
Diffstat (limited to 'src/glu/mesa')
-rw-r--r-- | src/glu/mesa/Makefile.X11 | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/src/glu/mesa/Makefile.X11 b/src/glu/mesa/Makefile.X11 deleted file mode 100644 index 2265620fe6b..00000000000 --- a/src/glu/mesa/Makefile.X11 +++ /dev/null @@ -1,58 +0,0 @@ -# Makefile for old Mesa GLU library - -##### MACROS ##### - -GLU_MAJOR = 1 -GLU_MINOR = 1 -GLU_TINY = 0$(MESA_MAJOR)0$(MESA_MINOR)0$(MESA_TINY) - -GLU_LIB_NAME = "GLU" # may be overridden in Make-config - -VPATH = RCS - -TOP = ../../.. -INCDIR = $(TOP)/include -LIBDIR = $(TOP)/lib - -SOURCES = glu.c mipmap.c nurbs.c nurbscrv.c nurbssrf.c nurbsutl.c \ - polytest.c project.c quadric.c tess.c tesselat.c - -OBJECTS = $(SOURCES:.c=.o) - - - -##### RULES ##### - -.c.o: - $(CC) -c -I$(INCDIR) $(CFLAGS) $< - - - -##### TARGETS ##### - -default: - @echo "Specify a target configuration" - -clean: - -rm -f *.o *~ - -targets: $(LIBDIR)/$(GLU_LIB) - -# Make the library: -$(LIBDIR)/$(GLU_LIB): $(OBJECTS) - $(TOP)/bin/mklib -o $(GLU_LIB_NAME) -major $(GLU_MAJOR) \ - -minor $(GLU_MINOR) -patch $(GLU_TINY) $(GLU_LIB_DEPS) \ - -install $(LIBDIR) $(OBJECTS) - -include $(TOP)/Make-config - -include depend - - - -# -# Run 'make depend' to update the dependencies if you change what's included -# by any source file. -# -dep: $(SOURCES) - makedepend -fdepend -Y -I$(TOP)/include $(SOURCES) |