9d1a61efbe
While bootstrapping the dependencies, make will see the "include depend" directive before the depend file has been created. To avoid a spurious warning in this case we use "-include" instead, (which differs precisely in the fact that it will not emit a diagnostic if the named file does not exist).
75 lines
1.7 KiB
Makefile
75 lines
1.7 KiB
Makefile
# src/glw/Makefile
|
|
|
|
TOP = ../..
|
|
include $(TOP)/configs/current
|
|
|
|
MAJOR = 1
|
|
MINOR = 0
|
|
TINY = 0
|
|
|
|
INCDIRS = -I$(TOP)/include $(MOTIF_CFLAGS) $(X11_INCLUDES)
|
|
|
|
|
|
OBJECTS = $(GLW_SOURCES:.c=.o)
|
|
|
|
|
|
|
|
##### RULES #####
|
|
|
|
.c.o:
|
|
$(CC) -c $(INCDIRS) $(CFLAGS) $(GLW_CFLAGS) $<
|
|
|
|
|
|
|
|
##### TARGETS #####
|
|
|
|
default: $(TOP)/$(LIB_DIR)/$(GLW_LIB_NAME)
|
|
|
|
# GLU pkg-config file
|
|
pcedit = sed \
|
|
-e 's,@INSTALL_DIR@,$(INSTALL_DIR),' \
|
|
-e 's,@INSTALL_LIB_DIR@,$(INSTALL_LIB_DIR),' \
|
|
-e 's,@INSTALL_INC_DIR@,$(INSTALL_INC_DIR),' \
|
|
-e 's,@VERSION@,$(MAJOR).$(MINOR).$(TINY),' \
|
|
-e 's,@GLW_PC_REQ_PRIV@,$(GLW_PC_REQ_PRIV),' \
|
|
-e 's,@GLW_PC_LIB_PRIV@,$(GLW_PC_LIB_PRIV),' \
|
|
-e 's,@GLW_PC_CFLAGS@,$(GLW_PC_CFLAGS),' \
|
|
-e 's,@GLW_LIB@,$(GLW_LIB),'
|
|
glw.pc: glw.pc.in
|
|
$(pcedit) $< > $@
|
|
|
|
install: glw.pc
|
|
$(INSTALL) -d $(DESTDIR)$(INSTALL_INC_DIR)/GL
|
|
$(INSTALL) -d $(DESTDIR)$(INSTALL_LIB_DIR)
|
|
$(INSTALL) -d $(DESTDIR)$(INSTALL_LIB_DIR)/pkgconfig
|
|
$(INSTALL) -m 644 *.h $(DESTDIR)$(INSTALL_INC_DIR)/GL
|
|
$(MINSTALL) $(TOP)/$(LIB_DIR)/$(GLW_LIB_GLOB) $(DESTDIR)$(INSTALL_LIB_DIR)
|
|
$(INSTALL) -m 644 glw.pc $(DESTDIR)$(INSTALL_LIB_DIR)/pkgconfig
|
|
|
|
clean:
|
|
-rm -f depend depend.bak
|
|
-rm -f *.o *.pc *~
|
|
|
|
|
|
# Make the library
|
|
$(TOP)/$(LIB_DIR)/$(GLW_LIB_NAME): $(OBJECTS)
|
|
$(MKLIB) -o $(GLW_LIB) -linker '$(CC)' -ldflags '$(LDFLAGS)' \
|
|
-major $(MAJOR) -minor $(MINOR) -patch $(TINY) \
|
|
$(MKLIB_OPTIONS) -install $(TOP)/$(LIB_DIR) \
|
|
-id $(INSTALL_LIB_DIR)/lib$(GLW_LIB).$(MAJOR).dylib \
|
|
$(GLW_LIB_DEPS) $(OBJECTS)
|
|
|
|
|
|
#
|
|
# Run 'make depend' to update the dependencies if you change what's included
|
|
# by any source file.
|
|
#
|
|
depend: $(GLW_SOURCES)
|
|
rm -f depend
|
|
touch depend
|
|
$(MKDEP) $(MKDEP_OPTIONS) -I$(TOP)/include $(GLW_SOURCES) \
|
|
$(X11_INCLUDES) > /dev/null
|
|
|
|
|
|
-include depend
|