X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/48b1d0ff4ff220d8f2994723f936a1ffa60addce..1ec3a9848a6843aca1b3590f636a149dd274efdc:/src/makelib.env.in diff --git a/src/makelib.env.in b/src/makelib.env.in index c3372e14b1..3da9676922 100644 --- a/src/makelib.env.in +++ b/src/makelib.env.in @@ -1,31 +1,123 @@ -# Makes a library in Unix (Motif) +# +# Template makefile for building wxWindows companion libraries. +# +# Author: Ron Lee +# Created: 19/3/2000 +# $Id$ +# +# To use, set the following vars before including it: +# +# top_srcdir +# top_builddir +# libsrc_dir +# +# TARGET_LIBNAME +# LIBVERSION_CURRENT +# LIBVERSION_REVISION +# LIBVERSION_AGE +# HEADER_PATH +# HEADER_SUBDIR +# +# HEADERS +# OBJECTS +# +# either a shared or static lib will be built according to the +# option given to configure. +# -# Replace this with your own path if necessary -WXDIR = $(WXWIN) +prefix = @prefix@ +exec_prefix = @exec_prefix@ +includedir = @includedir@ +libdir = @libdir@ -# Clears all default suffixes -.SUFFIXES: .o .cpp .c .cxx +INSTALL = @INSTALL@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_DATA = @INSTALL_DATA@ -.c.o : - $(CCC) -c $(CFLAGS) -o $@ $< +TARGETLIB_STATIC = $(TARGET_LIBNAME).a +TARGETLIB_SHARED = $(TARGET_LIBNAME).so.$(LIBVERSION_CURRENT).$(LIBVERSION_REVISION).$(LIBVERSION_AGE) +TARGETLIB_LINK1 = $(TARGET_LIBNAME).so.$(LIBVERSION_CURRENT) +TARGETLIB_LINK2 = $(TARGET_LIBNAME).so -.cpp.o : - $(CC) -c $(CPPFLAGS) -o $@ $< +TARGETLIB_SONAME = @WX_TARGET_LIBRARY_SONAME@ -.cxx.o : - $(CC) -c $(CPPFLAGS) -o $@ $< +# NB: see remark in Makefile.in as to why we don't use %.foo: %.bar rules +.SUFFIXES: .o .c .cpp .cxx -# this is for using the samples in ../samples/xxxxx -pretop_srcdir = @top_srcdir@ -top_srcdir = ../$(pretop_srcdir) -top_builddir = ../.. -include ../../src/make.env +.c.o: + $(CC) -c $(CFLAGS) $(PICFLAGS) -o $@ $< -all: $(LIBTARGET).a +.cpp.o: + $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $< -$(LIBTARGET).a : $(OBJECTS) - ar $(AROPTIONS) $@ $(OBJECTS) +.cxx.o: + $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $< + +# the comment at the end of the next line is needed because otherwise autoconf +# would remove this line completely - it contains a built-in hack to remove +# any VPATH assignment not containing ':' +VPATH = @PATH_IFS@$(top_srcdir)/$(libsrc_dir) # ':' for autoconf + +include $(top_builddir)/src/make.env + +all: libtype_@WX_TARGET_LIBRARY_TYPE@ + +libtype_so: $(top_builddir)/lib/$(TARGETLIB_SHARED) + +libtype_a: $(top_builddir)/lib/$(TARGETLIB_STATIC) + +$(top_builddir)/lib/$(TARGETLIB_SHARED): $(OBJECTS) + @$(INSTALL) -d $(top_builddir)/lib + $(SHARED_LD) $@ $(TARGETLIB_SONAME) $(OBJECTS) + cd $(top_builddir)/lib \ + && $(RM) $(TARGETLIB_LINK1) $(TARGETLIB_LINK2) \ + && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK1) \ + && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK2) + +$(top_builddir)/lib/$(TARGETLIB_STATIC): $(OBJECTS) + @$(INSTALL) -d $(top_builddir)/lib + @$(RM) $@ + $(AR) $(AROPTIONS) $@ $(OBJECTS) $(RANLIB) $@ +install: install_@WX_TARGET_LIBRARY_TYPE@ install_headers + +install_so: + $(INSTALL_PROGRAM) $(top_builddir)/lib/$(TARGETLIB_SHARED) $(libdir)/$(TARGETLIB_SHARED) + @$(RM) $(libdir)/$(TARGETLIB_LINK1) $(libdir)/$(TARGETLIB_LINK2) + cd $(libdir) \ + && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK1) \ + && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK2) + +install_a: + $(INSTALL_PROGRAM) $(top_builddir)/lib/$(TARGETLIB_STATIC) $(libdir)/$(TARGETLIB_STATIC) + +install_headers: + $(INSTALL) -d $(includedir)/wx/$(HEADER_SUBDIR) + @for h in $(HEADERS); do \ + $(INSTALL_DATA) $(HEADER_PATH)/$(HEADER_SUBDIR)/$$h $(includedir)/wx/$(HEADER_SUBDIR)/$$h; \ + echo "installing $(includedir)/wx/$(HEADER_SUBDIR)/$$h"; \ + done + +uninstall: + $(RM) $(libdir)/$(TARGETLIB_STATIC) + $(RM) $(libdir)/$(TARGETLIB_SHARED) + $(RM) $(libdir)/$(TARGETLIB_LINK1) + $(RM) $(libdir)/$(TARGETLIB_LINK2) + @echo "removing headers" + @for h in $(HEADERS); do \ + $(RM) $(includedir)/wx/$(HEADER_SUBDIR)/$$h; \ + done + @if test -d $(includedir)/wx/$(HEADER_SUBDIR); then \ + rmdir $(includedir)/wx/$(HEADER_SUBDIR); \ + fi + @-rmdir $(includedir)/wx + clean: - rm -f $(OBJECTS) $(LIBTARGET).a core + $(RM) $(OBJECTS) $(top_builddir)/lib/$(TARGETLIB_SHARED) \ + $(top_builddir)/lib/$(TARGETLIB_LINK1) \ + $(top_builddir)/lib/$(TARGETLIB_LINK2) \ + $(top_builddir)/lib/$(TARGETLIB_STATIC) core + +.PHONY: all libtype_so libtype_a install install_so install_a install_headers uninstall clean +