2 # Template makefile for building wxWindows companion libraries.
 
   4 # Author:   Ron Lee <ron@debian.org>
 
   8 # To use, set the following vars before including it:
 
  24 # either a shared or static lib will be built according to the
 
  25 # option given to configure.
 
  29 exec_prefix = @exec_prefix@
 
  30 includedir = @includedir@
 
  34 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
  35 INSTALL_DATA = @INSTALL_DATA@
 
  37 TARGETLIB_STATIC = $(TARGET_LIBNAME).a
 
  38 TARGETLIB_SHARED = $(TARGET_LIBNAME).so.$(LIBVERSION_CURRENT).$(LIBVERSION_REVISION).$(LIBVERSION_AGE)
 
  39 TARGETLIB_LINK1 = $(TARGET_LIBNAME).so.$(LIBVERSION_CURRENT)
 
  40 TARGETLIB_LINK2 = $(TARGET_LIBNAME).so
 
  42 TARGETLIB_SONAME = @WX_TARGET_LIBRARY_SONAME@
 
  45         $(CC) -c $(CFLAGS) $(PICFLAGS) -o $@ $<
 
  48         $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $<
 
  51         $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $<
 
  53 # the comment at the end of the next line is needed because otherwise autoconf
 
  54 # would remove this line completely - it contains a built-in hack to remove
 
  55 # any VPATH assignment not containing ':'
 
  56 VPATH = @PATH_IFS@$(top_srcdir)/$(libsrc_dir) # ':' for autoconf
 
  58 include $(top_builddir)/src/make.env
 
  61 all: libtype_@WX_TARGET_LIBRARY_TYPE@
 
  63 libtype_so: $(top_builddir)/lib/$(TARGETLIB_SHARED)
 
  65 libtype_a: $(top_builddir)/lib/$(TARGETLIB_STATIC)
 
  68 $(top_builddir)/lib/$(TARGETLIB_SHARED): $(OBJECTS)
 
  69         @$(INSTALL) -d $(top_builddir)/lib
 
  70         $(SHARED_LD) $@ $(TARGETLIB_SONAME) $(OBJECTS)
 
  71         cd $(top_builddir)/lib \
 
  72                 && $(RM) $(TARGETLIB_LINK1) $(TARGETLIB_LINK2) \
 
  73                 && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK1) \
 
  74                 && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK2)
 
  76 $(top_builddir)/lib/$(TARGETLIB_STATIC): $(OBJECTS)
 
  77         @$(INSTALL) -d $(top_builddir)/lib
 
  78         ar $(AROPTIONS) $@ $(OBJECTS)
 
  81 install: install_@WX_TARGET_LIBRARY_TYPE@ install_headers
 
  84         $(INSTALL_PROGRAM) $(top_builddir)/lib/$(TARGETLIB_SHARED) $(libdir)/$(TARGETLIB_SHARED)
 
  85         @$(RM) $(libdir)/$(TARGETLIB_LINK1) $(libdir)/$(TARGETLIB_LINK2)
 
  87                 && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK1) \
 
  88                 && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK2)
 
  91         $(INSTALL_PROGRAM) $(top_builddir)/lib/$(TARGETLIB_STATIC) $(libdir)/$(TARGETLIB_STATIC)
 
  94         $(INSTALL) -d $(includedir)/wx/$(HEADER_SUBDIR)
 
  95         @for h in $(HEADERS); do \
 
  96           $(INSTALL_DATA) $(HEADER_PATH)/$(HEADER_SUBDIR)/$$h $(includedir)/wx/$(HEADER_SUBDIR)/$$h; \
 
  97           echo "installing $(includedir)/wx/$(HEADER_SUBDIR)/$$h"; \
 
 101         $(RM) $(libdir)/$(TARGETLIB_STATIC)
 
 102         $(RM) $(libdir)/$(TARGETLIB_SHARED)
 
 103         $(RM) $(libdir)/$(TARGETLIB_LINK1)
 
 104         $(RM) $(libdir)/$(TARGETLIB_LINK2)
 
 105         @echo "removing headers"
 
 106         @for h in $(HEADERS); do \
 
 107           $(RM) $(includedir)/wx/$(HEADER_SUBDIR)/$$h; \
 
 109         @if test -d $(includedir)/wx/$(HEADER_SUBDIR); then \
 
 110           rmdir $(includedir)/wx/$(HEADER_SUBDIR); \
 
 112         @-rmdir $(includedir)/wx
 
 115         $(RM) $(OBJECTS) $(top_builddir)/lib/$(TARGETLIB_SHARED) \
 
 116               $(top_builddir)/lib/$(TARGETLIB_LINK1) \
 
 117               $(top_builddir)/lib/$(TARGETLIB_LINK2) \
 
 118               $(top_builddir)/lib/$(TARGETLIB_STATIC) core
 
 120 .PHONY: all libtype_so libtype_a install install_so install_a install_headers uninstall clean