summaryrefslogtreecommitdiff
path: root/src/glw
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2004-04-22 00:42:38 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2004-04-22 00:42:38 +0000
commit362f1df210d4142259f22d51c5269ed89dc396f3 (patch)
tree0b1ccc740290aead5c9d5c7f94479a6afcef3c4c /src/glw
parentf959f6e1dc27c71fc0ccc56e09b29101b3bf3b97 (diff)
obsolete
Diffstat (limited to 'src/glw')
-rw-r--r--src/glw/Makefile.X1172
1 files changed, 0 insertions, 72 deletions
diff --git a/src/glw/Makefile.X11 b/src/glw/Makefile.X11
deleted file mode 100644
index d7513ffb5aa..00000000000
--- a/src/glw/Makefile.X11
+++ /dev/null
@@ -1,72 +0,0 @@
-# Makefile for SGI's OpenGL widgets
-
-
-##### MACROS #####
-
-MAJOR = 1
-MINOR = 0
-TINY = 0
-
-TOP = ../..
-
-VPATH = RCS
-
-INCDIRS = -I$(TOP)/include -I/usr/include/Motif1.2 -I/usr/contrib/X11R6/include -I/usr/X11R6/include
-LIBDIR = $(TOP)/lib
-
-# Use these sources for Motif (and Xt) support. Requires Motif header files.
-#SOURCES = GLwDrawA.c GLwMDrawA.c
-
-# OR, use these sources for non-Motif (Xt only) build:
-SOURCES = GLwDrawA.c
-
-
-OBJECTS = $(SOURCES:.c=.o)
-
-
-
-##### RULES #####
-
-.c.o:
- $(CC) -c $(INCDIRS) $(CFLAGS) $<
-
-
-
-##### TARGETS #####
-
-default:
- @echo "Specify a target configuration"
-
-clean:
- -rm -f *.o *~
-
-targets: $(LIBDIR)/$(GLW_LIB) message
-
-
-# Make the library
-$(LIBDIR)/$(GLW_LIB): $(OBJECTS)
- $(TOP)/bin/mklib -o GLw -major $(MAJOR) -minor $(MINOR) \
- -patch $(TINY) $(MKLIB_OPTIONS) -install $(LIBDIR) \
- $(GLW_LIB_DEPS) $(OBJECTS)
-
-
-message:
- @echo
- @echo "************************************************************************"
- @echo "*** Edit widgets-sgi/Makefile.X11 to enable Motif support, if needed ***"
- @echo "************************************************************************"
- @echo
-
-
-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)