]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/makelib.env.in
corrected scrolling problems for controls, switched to separate wxSpinCtrl implementa...
[wxWidgets.git] / src / makelib.env.in
... / ...
CommitLineData
1#
2# Template makefile for building wxWindows companion libraries.
3#
4# Author: Ron Lee <ron@debian.org>
5# Created: 19/3/2000
6# $Id$
7#
8# To use, set the following vars before including it:
9#
10# top_srcdir
11# top_builddir
12# libsrc_dir
13#
14# TARGET_LIBNAME
15# LIBVERSION_CURRENT
16# LIBVERSION_REVISION
17# LIBVERSION_AGE
18# HEADER_PATH
19# HEADER_SUBDIR
20#
21# HEADERS
22# OBJECTS
23#
24# either a shared or static lib will be built according to the
25# option given to configure.
26#
27
28prefix = @prefix@
29exec_prefix = @exec_prefix@
30includedir = @includedir@
31libdir = @libdir@
32
33INSTALL = @INSTALL@
34INSTALL_PROGRAM = @INSTALL_PROGRAM@
35INSTALL_DATA = @INSTALL_DATA@
36
37TARGETLIB_STATIC = $(TARGET_LIBNAME).a
38TARGETLIB_SHARED = $(TARGET_LIBNAME).so.$(LIBVERSION_CURRENT).$(LIBVERSION_REVISION).$(LIBVERSION_AGE)
39TARGETLIB_LINK1 = $(TARGET_LIBNAME).so.$(LIBVERSION_CURRENT)
40TARGETLIB_LINK2 = $(TARGET_LIBNAME).so
41
42TARGETLIB_SONAME = @WX_TARGET_LIBRARY_SONAME@
43
44# NB: see remark in Makefile.in as to why we don't use %.foo: %.bar rules
45.SUFFIXES: .o .c .cpp .cxx
46
47.c.o:
48 $(CC) -c $(CFLAGS) $(PICFLAGS) -o $@ $<
49
50.cpp.o:
51 $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $<
52
53.cxx.o:
54 $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $<
55
56# the comment at the end of the next line is needed because otherwise autoconf
57# would remove this line completely - it contains a built-in hack to remove
58# any VPATH assignment not containing ':'
59VPATH = @PATH_IFS@$(top_srcdir)/$(libsrc_dir) # ':' for autoconf
60
61include $(top_builddir)/src/make.env
62
63all: libtype_@WX_TARGET_LIBRARY_TYPE@
64
65libtype_so: $(top_builddir)/lib/$(TARGETLIB_SHARED)
66
67libtype_a: $(top_builddir)/lib/$(TARGETLIB_STATIC)
68
69$(top_builddir)/lib/$(TARGETLIB_SHARED): $(OBJECTS)
70 @$(INSTALL) -d $(top_builddir)/lib
71 $(SHARED_LD) $@ $(TARGETLIB_SONAME) $(OBJECTS)
72 cd $(top_builddir)/lib \
73 && $(RM) $(TARGETLIB_LINK1) $(TARGETLIB_LINK2) \
74 && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK1) \
75 && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK2)
76
77$(top_builddir)/lib/$(TARGETLIB_STATIC): $(OBJECTS)
78 @$(INSTALL) -d $(top_builddir)/lib
79 @$(RM) $@
80 $(AR) $(AROPTIONS) $@ $(OBJECTS)
81 $(RANLIB) $@
82
83install: install_@WX_TARGET_LIBRARY_TYPE@ install_headers
84
85install_so:
86 $(INSTALL_PROGRAM) $(top_builddir)/lib/$(TARGETLIB_SHARED) $(libdir)/$(TARGETLIB_SHARED)
87 @$(RM) $(libdir)/$(TARGETLIB_LINK1) $(libdir)/$(TARGETLIB_LINK2)
88 cd $(libdir) \
89 && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK1) \
90 && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK2)
91
92install_a:
93 $(INSTALL_PROGRAM) $(top_builddir)/lib/$(TARGETLIB_STATIC) $(libdir)/$(TARGETLIB_STATIC)
94
95install_headers:
96 $(INSTALL) -d $(includedir)/wx/$(HEADER_SUBDIR)
97 @for h in $(HEADERS); do \
98 $(INSTALL_DATA) $(HEADER_PATH)/$(HEADER_SUBDIR)/$$h $(includedir)/wx/$(HEADER_SUBDIR)/$$h; \
99 echo "installing $(includedir)/wx/$(HEADER_SUBDIR)/$$h"; \
100 done
101
102uninstall:
103 $(RM) $(libdir)/$(TARGETLIB_STATIC)
104 $(RM) $(libdir)/$(TARGETLIB_SHARED)
105 $(RM) $(libdir)/$(TARGETLIB_LINK1)
106 $(RM) $(libdir)/$(TARGETLIB_LINK2)
107 @echo "removing headers"
108 @for h in $(HEADERS); do \
109 $(RM) $(includedir)/wx/$(HEADER_SUBDIR)/$$h; \
110 done
111 @if test -d $(includedir)/wx/$(HEADER_SUBDIR); then \
112 rmdir $(includedir)/wx/$(HEADER_SUBDIR); \
113 fi
114 @-rmdir $(includedir)/wx
115
116clean:
117 $(RM) $(OBJECTS) $(top_builddir)/lib/$(TARGETLIB_SHARED) \
118 $(top_builddir)/lib/$(TARGETLIB_LINK1) \
119 $(top_builddir)/lib/$(TARGETLIB_LINK2) \
120 $(top_builddir)/lib/$(TARGETLIB_STATIC) core
121
122.PHONY: all libtype_so libtype_a install install_so install_a install_headers uninstall clean
123