File: GNUmakefile.in

package info (click to toggle)
bareos 16.2.6-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 25,044 kB
  • sloc: ansic: 230,978; cpp: 15,323; sh: 9,499; makefile: 4,202; sql: 2,930; python: 1,532; lisp: 721; perl: 156; xml: 57; sed: 27; awk: 8
file content (251 lines) | stat: -rwxr-xr-x 8,070 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#
# Master Makefile
#
@MCOMMON@

working_dir = @working_dir@
log_dir = @logdir@
dir_group = @dir_group@
dir_user = @dir_user@

srcdir = @srcdir@
VPATH = @srcdir@
.PATH: @srcdir@
topdir = .
thisdir = .

first_rule: all
dummy:

# --client-only directories
fd_subdirs = src scripts src/lib src/findlib @LMDB_DIR@ src/filed \
       @BAT_DIR@ @TRAY_MONITOR_DIR@ src/console @FD_PLUGIN_DIR@

# Non-client-only directores
subdirs = src/cats @NDMP_DIR@ @DIRD_DIR@ @STORED_DIR@ @SD_BACKENDS_DIR@ @SD_PLUGIN_DIR@ @DIR_PLUGIN_DIR@ src/tools

unittest_dirs = @UNITTEST_DIRS@
unittest_base_dirs = $(unittest_dirs:/unittests= )

all_subdirs = ${fd_subdirs} ${@ALL_DIRS@} manpages platforms

DIST =	INSTALL README.configure configure Makefile Makefile.in ChangeLog

DIST_CFG = autoconf/aclocal.m4 autoconf/configure.in \
	autoconf/config.h.in  autoconf/acconfig.h  autoconf/Make.common.in \
	autoconf/install-sh autoconf/mkinstalldirs

MKDIR = $(srcdir)/autoconf/mkinstalldirs
LIBTOOL_DEPS = @LIBTOOL_DEPS@

#-------------------------------------------------------------------------

all: info Makefile subdirs
	@echo "bareos was built successfully"

SUBDIRS = ${all_subdirs}
.PHONY: subdirs $(SUBDIRS)
subdirs: $(SUBDIRS)
$(SUBDIRS):
	$(MAKE) -C $@

src/cats: src/lib
src/findlib: src/lib
src/filed: src/lib src/findlib
src/dird: src/lib src/cats @NDMP_DIR@
src/stored: src/lib src/findlib @NDMP_DIR@
src/console: src/lib
src/plugins/filed: src/lib
src/plugins/dird: src/lib
src/plugins/stored: src/lib
src/tools: src/lib src/findlib src/cats
@BAT_DIR@: src/lib src/findlib
@TRAY_MONITOR_DIR@: src/lib src/findlib
src/stored/backends: src/lib
src/lib/unittests: src/lib
src/findlib/unittests: src/findlib

depend:
	@for I in ${all_subdirs}; \
	  do (cd $$I; echo "==>Entering directory `pwd`"; $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done

bareos-fd: Makefile
	@for I in ${fd_subdirs}; \
	  do (cd $$I; echo "==>Entering directory `pwd`"; \
	      $(MAKE) DESTDIR=$(DESTDIR) all || (echo ""; echo ""; echo "   ====== Error in `pwd` ======"; \
			    echo ""; echo ""; exit 1;)); \
	done

#-------------------------------------------------------------------------

autoconf/aclocal.m4: autoconf/configure.in autoconf/bareos/* autoconf/gettext/* autoconf/libtool/*

#  Note, the following is needed in the above if ever any new macro is added.
#   However, at the current time, the -I libtool causes the autoconf/aclocal.m4
#   get messed up, so this is commented out
#	cd autoconf && aclocal -I bareos-macros -I gettext-macros -I libtool

configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/config.h.in
	cd $(srcdir);
	${RMF} config.cache config.log config.out config.status src/config.h
	${RMF} -r autoconf/autom4te.cache autom4te.cache
	touch config.status
	autoconf --prepend-include=$(srcdir)/autoconf \
	autoconf/configure.in > configure
	chmod 755 configure
	${RMF} -r autoconf/autom4te.cache autom4te.cache

config.status:
	if test -x config.status; then config.status --recheck; \
	else $(SHELL) configure; fi

autoconf/config.h.in: autoconf/configure.in
	cd $(srcdir);
	${RMF} config.cache config.log config.out config.status src/config.h
	autoheader --prepend-include=$(srcdir)/autoconf \
	autoconf/configure.in > autoconf/config.h.in
	chmod 644 autoconf/config.h.in

libtool: Makefile $(LIBTOOL_DEPS)
	$(SHELL) ./config.status --recheck

installdirs:
	$(MKDIR) $(DESTDIR)$(sbindir)
	$(MKDIR) $(DESTDIR)$(sysconfdir)
	$(MKDIR) $(DESTDIR)$(confdir)
	chmod 770 $(DESTDIR)$(confdir)
	-if test "x$(dir_user)" != "x" ; then \
	   chown $(dir_user) $(DESTDIR)$(confdir); \
	fi
	-if test "x$(dir_group)" != "x" ; then \
	   chgrp $(dir_group) $(DESTDIR)$(confdir); \
	fi
	$(MKDIR) $(DESTDIR)$(scriptdir)
	$(MKDIR) $(DESTDIR)$(archivedir)
	-if test ! -d $(DESTDIR)$(working_dir) ; then \
	   $(MKDIR) $(DESTDIR)$(working_dir); \
	   chmod 770 $(DESTDIR)$(working_dir); \
	fi

	$(MKDIR) $(DESTDIR)$(log_dir);
	chmod 775 $(DESTDIR)$(log_dir);

	-if test "x$(dir_user)" != "x" ; then \
	   chown $(dir_user) $(DESTDIR)$(working_dir); \
	fi
	-if test "x$(dir_group)" != "x" ; then \
	   chgrp $(dir_group) $(DESTDIR)$(working_dir); \
	fi

install: installdirs
	@for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done
	(cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)

install-autostart:
	(cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)

install-autostart-dir:
	(cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)

install-autostart-fd:
	(cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)

install-autostart-sd:
	(cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)

Makefile: Makefile.in
	cd $(topdir) \
	    && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status

Makefiles:
	$(SHELL) config.status
	(cd scripts; \
	 chmod 755 bareos btraceback mtx-changer bconsole devel_bareos; )

	(cd src/cats; \
	 chmod 755 create_bareos_database update_bareos_tables make_bareos_tables; \
	 chmod 755 grant_bareos_privileges drop_bareos_tables drop_bareos_database; \
	 chmod 755 make_catalog_backup delete_catalog_backup)

	@for I in @DB_BACKENDS@ ; do \
	  (cd src/cats; \
	   chmod 755 create_$${I}_database update_$${I}_tables make_$${I}_tables; \
	   chmod 755 grant_$${I}_privileges drop_$${I}_tables drop_$${I}_database); \
	  done

	(cd src/qt-console; \
	 chmod 755 install_conf_file)

info:
	@mkdir -p build/
	scripts/git-info.sh build/
	$(CP) -p config.out build/

clean:
	@for I in ${all_subdirs} ; \
	  do (cd $$I; echo "==>Entering directory `pwd`"; ${MAKE} $@ || exit 1); done
	@$(RMF) *~ 1 2 3 core core.* config.guess console.log console.sum
	@$(RMF) examples/1 examples/2 examples/devices/1 examples/devices/2
	@$(RMF) -r autom4te.cache
	@$(RMF) -r build/
	@find . -name ".#*" -exec $(RMF) {} \;

# clean for distribution
distclean:
	@for I in $(all_subdirs); do (cd $$I && $(MAKE) $@ || exit 1); done
	@for I in $(all_subdirs); do (cd $$I && $(RMF) startit stopit btraceback); done
	@(cd $(srcdir) && $(RMF) *~ config.cache config.h config.log config.status config.out)
	@(cd $(srcdir) && $(RMF) Makefile autoconf/Make.common)
	@$(RMF) bareos fd Makefile startmysql stopmysql startit stopit btraceback
	@$(RMF) bconsole gconsole
	@$(RMF) *~ 1 2 3 core core.* config.guess console.log console.sum
	@$(RMF) working/* kerns-*
	@$(RMF) -r txt diff src/python src/testprogs
	@$(RMF) libtool
	# remove files generated by configure
	find . -type f -a -name "*.in" -a ! -name "control.in" | sed -e 's/.in$$//' | xargs $(RMF)

devclean:
	@for I in $(all_subdirs); do (cd $$I && $(MAKE) $@ || exit 1); done
	@for I in $(all_subdirs); do (cd $$I && $(RMF) startit stopit btraceback); done
	@(cd $(srcdir) && $(RMF) *~ config.cache config.h config.log config.status config.out)
	@(cd $(srcdir) && $(RMF) Makefile autoconf/Make.common)
	@$(RMF) bareos fd Makefile startmysql stopmysql startit stopit btraceback
	@$(RMF) bconsole gconsole
	@$(RMF) *~ 1 2 3 core core.* config.guess console.log console.sum
	@$(RMF) working/*

distdirs:
	mkdir ../$(VERNAME);
	mkdir ../$(VERNAME)/autoconf;
	@for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || (echo "Failed to make distclean in $$I"; exit 0) ); done

distcopy:
	$(CP) -p $(DIST) ../$(VERNAME);
	$(CP) -p $(DIST_CFG) ../$(VERNAME)/autoconf;
	@for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done

distrib: configure autoconf/config.h.in distdirs distcopy

test:

check: $(unittest_base_dirs)
	@for I in $(unittest_dirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done


tar.gz:  ../$(VERNAME).tar.gz
../$(VERNAME).tar.gz:
	(cd ..; tar cvf - $(VERNAME) | gzip -f9 > $(VERNAME).tar.gz)

tar.Z: ../$(VERNAME).tar.Z
../$(VERNAME).tar.Z:
	(cd ..; tar cvf - $(VERNAME) | compress > $(VERNAME).tar.Z)

tar.bz2: ../$(VERNAME).tar.bz2
../$(VERNAME).tar.bz2:
	(cd ..; tar cvf - $(VERNAME) | bzip2 -f9 > $(VERNAME).tar.bz2)

uuencode: tar.gz
	uuencode ../$(VERNAME).tar.gz $(VERNAME).tar.gz > ../$(VERNAME).tgz.uu

# ------------------------------------------------------------------------