From de0ee3187c8fffb52327f9a5680a3eafea872276 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 26 Mar 2004 15:19:11 +0000 Subject: New Makefile system --- src/glw/Makefile | 49 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) (limited to 'src/glw') diff --git a/src/glw/Makefile b/src/glw/Makefile index 73fcc4d782..d5ec4d9f25 100644 --- a/src/glw/Makefile +++ b/src/glw/Makefile @@ -1 +1,48 @@ -include Makefile.X11 +# src/glw/Makefile + +TOP = ../.. +include $(TOP)/configs/current + +MAJOR = 1 +MINOR = 0 +TINY = 0 + +INCDIRS = -I$(TOP)/include -I/usr/include/Motif1.2 -I/usr/contrib/X11R6/include -I/usr/X11R6/include + + +OBJECTS = $(GLW_SOURCES:.c=.o) + + + +##### RULES ##### + +.c.o: + $(CC) -c $(INCDIRS) $(CFLAGS) $< + + + +##### TARGETS ##### + +default: $(LIB_DIR)/$(GLW_LIB_NAME) + + +clean: + -rm -f *.o *~ + +# Make the library +$(LIB_DIR)/$(GLW_LIB_NAME): $(OBJECTS) + $(TOP)/bin/mklib -o $(GLW_LIB) -major $(MAJOR) -minor $(MINOR) \ + -patch $(TINY) $(MKLIB_OPTIONS) -install $(LIB_DIR) \ + $(GLW_LIB_DEPS) $(OBJECTS) + + +# +# Run 'make depend' to update the dependencies if you change what's included +# by any source file. +# +depend: $(GLW_SOURCES) + touch depend + makedepend -fdepend -Y -I$(TOP)/include $(GLW_SOURCES) + + +include depend -- cgit v1.2.3