]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - include/buildmacros
update configure defaults
[thirdparty/xfsprogs-dev.git] / include / buildmacros
1 #
2 # Copyright (c) 2002-2003 Silicon Graphics, Inc. All Rights Reserved.
3 #
4
5 BUILDRULES = $(TOPDIR)/include/buildrules
6
7 # LCFLAGS, LLDFLAGS, LLDLIBS, LSRCFILES and LDIRT may be specified in
8 # user Makefiles. Note: LSRCFILES is anything other than Makefile, $(CFILES)
9 # $(CXXFILES), or $(HFILES) and is used to construct the manifest list
10 # during the "dist" phase (packaging).
11
12 LDFLAGS += $(LOADERFLAGS) $(LLDFLAGS)
13 LTLDFLAGS += $(LOADERFLAGS)
14 LDLIBS = $(LLDLIBS) $(PLDLIBS) $(MALLOCLIB)
15
16 MAKEOPTS = --no-print-directory
17 SRCFILES = Makefile $(HFILES) $(CFILES) $(LSRCFILES) $(LFILES) $(YFILES)
18 SRCFILES += $(QAHFILES)
19
20 DEPDIRT = dep dep.bak
21 MANDIRT = *.[1-9].gz
22 PODIRT = *.tmpo *.mo
23 CDIRT = $(OBJECTS) $(LTOBJECTS) $(LTCOMMAND) $(LTLIBRARY)
24 DIRT = $(LDIRT) $(DEPDIRT) $(MANDIRT) $(PODIRT) $(CDIRT)
25 LIBDIRT = .libs
26 DIRDIRT = $(LDIRDIRT) $(LIBDIRT)
27
28 OBJECTS = $(ASFILES:.s=.o) \
29 $(CFILES:.c=.o) \
30 $(LFILES:.l=.o) \
31 $(YFILES:%.y=%.tab.o)
32
33 INSTALL = $(TOPDIR)/install-sh -o $(PKG_USER) -g $(PKG_GROUP)
34
35 SHELL = /bin/sh
36 IMAGES_DIR = $(TOPDIR)/all-images
37 DIST_DIR = $(TOPDIR)/dist
38
39 CCF = $(CC) $(CFLAGS) $(CPPFLAGS)
40 MAKEF = $(MAKE) $(MAKEOPTS)
41 CXXF = $(CXX) $(CXXFLAGS)
42
43 # For libtool.
44 LIBNAME = $(basename $(LTLIBRARY))
45 LTOBJECTS = $(OBJECTS:.o=.lo)
46 LTVERSION = $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
47
48 LTLINK = $(LIBTOOL) --tag=CC --mode=link $(CC)
49 LTEXEC = $(LIBTOOL) --mode=execute
50 LTINSTALL = $(LIBTOOL) --mode=install $(INSTALL)
51 LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CCF)
52
53 ifeq ($(ENABLE_SHARED),yes)
54 LTLDFLAGS += -rpath $(PKG_ROOT_LIB_DIR)
55 LTLDFLAGS += -version-info $(LTVERSION)
56 endif
57
58 ifeq ($(ENABLE_SHARED),yes)
59 INSTALL_LTLIB = \
60 cd $(TOPDIR)/$(LIBNAME)/.libs; \
61 ../$(INSTALL) -m 755 -d $(PKG_ROOT_LIB_DIR); \
62 ../$(INSTALL) -m 644 -T so_dot_version $(LIBNAME).lai $(PKG_ROOT_LIB_DIR); \
63 ../$(INSTALL) -T so_dot_current $(LIBNAME).lai $(PKG_ROOT_LIB_DIR)
64 endif
65
66 # Libtool thinks the static and shared libs should be in the same dir, so
67 # make the static lib appear in the place we chose as rpath (using the two
68 # symlinks below).
69 # Other things want the shared libs to appear in /usr/lib, else they'll
70 # link with the static libs there. So, another symlink to get the .so into
71 # /usr/lib.
72 ifeq ($(ENABLE_SHARED),yes)
73 INSTALL_LTLIB_DEV = \
74 cd $(TOPDIR)/$(LIBNAME)/.libs; \
75 ../$(INSTALL) -m 755 -d $(PKG_LIB_DIR); \
76 ../$(INSTALL) -m 644 -T old_lib $(LIBNAME).lai $(PKG_LIB_DIR); \
77 ../$(INSTALL) -m 644 $(LIBNAME).lai $(PKG_LIB_DIR)/$(LIBNAME).la ; \
78 ../$(INSTALL) -m 755 -d $(PKG_ROOT_LIB_DIR); \
79 ../$(INSTALL) -T so_base $(LIBNAME).lai $(PKG_ROOT_LIB_DIR); \
80 if test "x$(PKG_LIB_DIR)" != "x$(PKG_ROOT_LIB_DIR)" ; then \
81 ../$(INSTALL) -S $(PKG_LIB_DIR)/$(LIBNAME).a $(PKG_ROOT_LIB_DIR)/$(LIBNAME).a; \
82 ../$(INSTALL) -S $(PKG_LIB_DIR)/$(LIBNAME).la $(PKG_ROOT_LIB_DIR)/$(LIBNAME).la; \
83 ../$(INSTALL) -S $(PKG_ROOT_LIB_DIR)/$(LIBNAME).so $(PKG_LIB_DIR)/$(LIBNAME).so; \
84 fi
85 else
86 INSTALL_LTLIB_DEV = $(INSTALL_LTLIB_STATIC)
87 endif
88
89 INSTALL_LTLIB_STATIC = \
90 cd $(TOPDIR)/$(LIBNAME)/.libs; \
91 ../$(INSTALL) -m 755 -d $(PKG_LIB_DIR); \
92 ../$(INSTALL) -m 644 -T old_lib $(LIBNAME).lai $(PKG_LIB_DIR)
93
94 INSTALL_MAN = \
95 @for d in $(MAN_PAGES); do \
96 first=true; \
97 for m in `$(AWK) \
98 '/^\.S[h|H] NAME/ {ok=1; next} ok {print; exit}' $$d \
99 | $(SED) \
100 -e 's/^\.Nm //' -e 's/,/ /g' -e 's/\\-.*//' \
101 -e 's/\\\f[0-9]//g' -e 's/ / /g;q'`; \
102 do \
103 [ -z "$$m" -o "$$m" = "\\" ] && continue; \
104 t=$(MAN_DEST)/$$m.$(MAN_SECTION); \
105 if $$first; then \
106 if $(HAVE_ZIPPED_MANPAGES); then \
107 $(ZIP) -9 -c $$d > $$d.gz; _sfx=.gz; \
108 fi; \
109 u=$$m.$(MAN_SECTION)$$_sfx; \
110 echo $(INSTALL) -m 644 $${d}$$_sfx $${t}$$_sfx;\
111 $(INSTALL) -m 644 $${d}$$_sfx $${t}$$_sfx; \
112 else \
113 echo $(INSTALL) -S $$u $${t}$$_sfx; \
114 $(INSTALL) -S $$u $${t}$$_sfx; \
115 fi; \
116 first=false; \
117 done; \
118 done
119
120 ifeq ($(ENABLE_GETTEXT),yes)
121 INSTALL_LINGUAS = \
122 @for l in $(LINGUAS) ""; do \
123 if test -f "$$l.mo" ; then \
124 ldir=$(PKG_LOCALE_DIR)/$$l/LC_MESSAGES; \
125 $(INSTALL) -m 755 -d $$ldir; \
126 $(INSTALL) -m 644 $$l.mo $$ldir/$(PKG_NAME).mo; \
127 fi; \
128 done
129 endif
130
131 MAN_MAKERULE = \
132 @for f in *.[12345678] ""; do \
133 if test ! -z "$$f"; then \
134 $(ZIP) --best -c < $$f > $$f.gz; \
135 fi; \
136 done
137
138 DIST_MAKERULE = \
139 $(MAKEF) -C build dist
140
141 SOURCE_MAKERULE = \
142 @test -z "$$DIR" && DIR="."; \
143 for f in $(SRCFILES) $(POTHEAD) ""; do \
144 test -z "$$f" && break; \
145 test -L "$$f" || $(ECHO) $$DIR/$$f; \
146 done; \
147 for d in `echo $(SUBDIRS)` ""; do \
148 test -z "$$d" && break; \
149 if test -d "$$d"; then \
150 $(MAKEF) DIR=$$DIR/$$d -C $$d $@ || exit $$?; \
151 fi; \
152 done