aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/Makefile.in83
1 files changed, 67 insertions, 16 deletions
diff --git a/util/Makefile.in b/util/Makefile.in
index 9c830c2..80fb2d5 100644
--- a/util/Makefile.in
+++ b/util/Makefile.in
@@ -131,6 +131,7 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
131 131
132TAR = tar 132TAR = tar
133GZIP_ENV = --best 133GZIP_ENV = --best
134DEP_FILES = .deps/bsetroot.P
134SOURCES = $(bsetroot_SOURCES) 135SOURCES = $(bsetroot_SOURCES)
135OBJECTS = $(bsetroot_OBJECTS) 136OBJECTS = $(bsetroot_OBJECTS)
136 137
@@ -138,9 +139,9 @@ all: all-redirect
138.SUFFIXES: 139.SUFFIXES:
139.SUFFIXES: .S .c .cc .lo .o .s 140.SUFFIXES: .S .c .cc .lo .o .s
140$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) 141$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
141 cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps util/Makefile 142 cd $(top_srcdir) && $(AUTOMAKE) --gnu util/Makefile
142 143
143Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 144Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
144 cd $(top_builddir) \ 145 cd $(top_builddir) \
145 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 146 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
146 147
@@ -170,9 +171,6 @@ uninstall-binPROGRAMS:
170 rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ 171 rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
171 done 172 done
172 173
173.c.o:
174 $(COMPILE) -c $<
175
176.s.o: 174.s.o:
177 $(COMPILE) -c $< 175 $(COMPILE) -c $<
178 176
@@ -189,9 +187,6 @@ distclean-compile:
189 187
190maintainer-clean-compile: 188maintainer-clean-compile:
191 189
192.c.lo:
193 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
194
195.s.lo: 190.s.lo:
196 $(LIBTOOL) --mode=compile $(COMPILE) -c $< 191 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
197 192
@@ -269,6 +264,11 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
269subdir = util 264subdir = util
270 265
271distdir: $(DISTFILES) 266distdir: $(DISTFILES)
267 here=`cd $(top_builddir) && pwd`; \
268 top_distdir=`cd $(top_distdir) && pwd`; \
269 distdir=`cd $(distdir) && pwd`; \
270 cd $(top_srcdir) \
271 && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu util/Makefile
272 @for file in $(DISTFILES); do \ 272 @for file in $(DISTFILES); do \
273 d=$(srcdir); \ 273 d=$(srcdir); \
274 if test -d $$d/$$file; then \ 274 if test -d $$d/$$file; then \
@@ -280,6 +280,56 @@ distdir: $(DISTFILES)
280 fi; \ 280 fi; \
281 done 281 done
282 282
283DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
284
285-include $(DEP_FILES)
286
287mostlyclean-depend:
288
289clean-depend:
290
291distclean-depend:
292 -rm -rf .deps
293
294maintainer-clean-depend:
295
296%.o: %.c
297 @echo '$(COMPILE) -c $<'; \
298 $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
299 @-cp .deps/$(*F).pp .deps/$(*F).P; \
300 tr ' ' '\012' < .deps/$(*F).pp \
301 | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
302 >> .deps/$(*F).P; \
303 rm .deps/$(*F).pp
304
305%.lo: %.c
306 @echo '$(LTCOMPILE) -c $<'; \
307 $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
308 @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
309 < .deps/$(*F).pp > .deps/$(*F).P; \
310 tr ' ' '\012' < .deps/$(*F).pp \
311 | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
312 >> .deps/$(*F).P; \
313 rm -f .deps/$(*F).pp
314
315%.o: %.cc
316 @echo '$(CXXCOMPILE) -c $<'; \
317 $(CXXCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
318 @-cp .deps/$(*F).pp .deps/$(*F).P; \
319 tr ' ' '\012' < .deps/$(*F).pp \
320 | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
321 >> .deps/$(*F).P; \
322 rm .deps/$(*F).pp
323
324%.lo: %.cc
325 @echo '$(LTCXXCOMPILE) -c $<'; \
326 $(LTCXXCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
327 @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
328 < .deps/$(*F).pp > .deps/$(*F).P; \
329 tr ' ' '\012' < .deps/$(*F).pp \
330 | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
331 >> .deps/$(*F).P; \
332 rm -f .deps/$(*F).pp
283info-am: 333info-am:
284info: info-am 334info: info-am
285dvi-am: 335dvi-am:
@@ -318,27 +368,27 @@ distclean-generic:
318maintainer-clean-generic: 368maintainer-clean-generic:
319 -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) 369 -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
320mostlyclean-am: mostlyclean-binPROGRAMS mostlyclean-compile \ 370mostlyclean-am: mostlyclean-binPROGRAMS mostlyclean-compile \
321 mostlyclean-libtool mostlyclean-tags \ 371 mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
322 mostlyclean-generic 372 mostlyclean-generic
323 373
324mostlyclean: mostlyclean-am 374mostlyclean: mostlyclean-am
325 375
326clean-am: clean-binPROGRAMS clean-compile clean-libtool clean-tags \ 376clean-am: clean-binPROGRAMS clean-compile clean-libtool clean-tags \
327 clean-generic mostlyclean-am 377 clean-depend clean-generic mostlyclean-am
328 378
329clean: clean-am 379clean: clean-am
330 380
331distclean-am: distclean-binPROGRAMS distclean-compile distclean-libtool \ 381distclean-am: distclean-binPROGRAMS distclean-compile distclean-libtool \
332 distclean-tags distclean-generic clean-am \ 382 distclean-tags distclean-depend distclean-generic \
333 distclean-local 383 clean-am distclean-local
334 -rm -f libtool 384 -rm -f libtool
335 385
336distclean: distclean-am 386distclean: distclean-am
337 387
338maintainer-clean-am: maintainer-clean-binPROGRAMS \ 388maintainer-clean-am: maintainer-clean-binPROGRAMS \
339 maintainer-clean-compile maintainer-clean-libtool \ 389 maintainer-clean-compile maintainer-clean-libtool \
340 maintainer-clean-tags maintainer-clean-generic \ 390 maintainer-clean-tags maintainer-clean-depend \
341 distclean-am 391 maintainer-clean-generic distclean-am
342 @echo "This command is intended for maintainers to use;" 392 @echo "This command is intended for maintainers to use;"
343 @echo "it deletes files that may require special tools to rebuild." 393 @echo "it deletes files that may require special tools to rebuild."
344 394
@@ -350,8 +400,9 @@ mostlyclean-compile distclean-compile clean-compile \
350maintainer-clean-compile mostlyclean-libtool distclean-libtool \ 400maintainer-clean-compile mostlyclean-libtool distclean-libtool \
351clean-libtool maintainer-clean-libtool uninstall-binSCRIPTS \ 401clean-libtool maintainer-clean-libtool uninstall-binSCRIPTS \
352install-binSCRIPTS tags mostlyclean-tags distclean-tags clean-tags \ 402install-binSCRIPTS tags mostlyclean-tags distclean-tags clean-tags \
353maintainer-clean-tags distdir info-am info dvi-am dvi check check-am \ 403maintainer-clean-tags distdir mostlyclean-depend distclean-depend \
354installcheck-am installcheck install-exec-am install-exec \ 404clean-depend maintainer-clean-depend info-am info dvi-am dvi check \
405check-am installcheck-am installcheck install-exec-am install-exec \
355install-data-am install-data install-am install uninstall-am uninstall \ 406install-data-am install-data install-am install uninstall-am uninstall \
356all-redirect all-am all installdirs mostlyclean-generic \ 407all-redirect all-am all installdirs mostlyclean-generic \
357distclean-generic clean-generic maintainer-clean-generic clean \ 408distclean-generic clean-generic maintainer-clean-generic clean \