From 9dd2747e5f23323d693820121fd123e19e49900c Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 22 Mar 2000 23:43:53 +0000 Subject: [PATCH] minor tweaks --- src/glw/Makefile.X11 | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/glw/Makefile.X11 b/src/glw/Makefile.X11 index af55a1bf38f..1d81ef6a480 100644 --- a/src/glw/Makefile.X11 +++ b/src/glw/Makefile.X11 @@ -7,12 +7,18 @@ ##### MACROS ##### +MAJOR = 1 +MINOR = 0 +TINY = 0 + VPATH = RCS INCDIRS = -I../include -I/usr/include/Motif1.2 -I/usr/X11R6/include LIBDIR = ../lib -SOURCES = GLwDrawA.c GLwMDrawA.c +# Compile GLwMDrawA.c only if you have Motif headers! +#SOURCES = GLwDrawA.c GLwMDrawA.c +SOURCES = GLwDrawA.c OBJECTS = $(SOURCES:.c=.o) @@ -34,16 +40,15 @@ default: clean: -rm *.o *~ -# The name of the library file comes from Make-config -#XXX GLW_LIB = libGLw.a - targets: $(LIBDIR)/$(GLW_LIB) # Make the library $(LIBDIR)/$(GLW_LIB): $(OBJECTS) - $(MAKELIB) $(GLW_LIB) $(MAJOR) $(MINOR) $(OBJECTS) + $(MAKELIB) $(GLW_LIB) $(MAJOR) $(MINOR) $(TINY) $(OBJECTS) mv $(GLW_LIB)* $(LIBDIR) + -mv *.a $(LIBDIR) + include ../Make-config -- 2.30.2