The special feature of bin/minstall to copy symlinks is only ever needed when installing libraries which may have .so symlinks. All the headers and directories can use a normal install program. These two modes are separated as $(INSTALL) and $(MINSTALL) to allow the user (or autoconf) to override installing normal files as they please. An autoconf check for the install program has been added and will be used in preference to minstall when available. Fixes bug 16053.
74 lines
1.7 KiB
Makefile
74 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) $<
|
|
|
|
|
|
|
|
##### 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
|