Changes in libcfa/prelude/Makefile.in [c680a4b:f1b6671]
- File:
-
- 1 edited
-
libcfa/prelude/Makefile.in (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/prelude/Makefile.in
rc680a4b rf1b6671 104 104 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) 105 105 mkinstalldirs = $(install_sh) -d 106 CONFIG_HEADER = defines.hfa107 106 CONFIG_CLEAN_FILES = 108 107 CONFIG_CLEAN_VPATH_FILES = … … 155 154 am__installdirs = "$(DESTDIR)$(cfalibdir)" 156 155 DATA = $(cfalib_DATA) 157 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ 158 $(LISP)defines.hfa.in 159 # Read a list of newline-separated strings from the standard input, 160 # and print each of them once, without duplicates. Input order is 161 # *not* preserved. 162 am__uniquify_input = $(AWK) '\ 163 BEGIN { nonempty = 0; } \ 164 { items[$$0] = 1; nonempty = 1; } \ 165 END { if (nonempty) { for (i in items) print i; }; } \ 166 ' 167 # Make sure the list of sources is unique. This is necessary because, 168 # e.g., the same source file might be shared among _SOURCES variables 169 # for different programs/libraries. 170 am__define_uniq_tagged_files = \ 171 list='$(am__tagged_files)'; \ 172 unique=`for i in $$list; do \ 173 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 174 done | $(am__uniquify_input)` 175 ETAGS = etags 176 CTAGS = ctags 177 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/defines.hfa.in 156 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) 157 am__DIST_COMMON = $(srcdir)/Makefile.in 178 158 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 179 159 ACLOCAL = @ACLOCAL@ … … 326 306 # put into lib for now 327 307 cfalibdir = ${CFA_LIBDIR} 328 cfalib_DATA = gcc-builtins.cf builtins.cf extras.cf prelude.cfa bootloader.c defines.hfa308 cfalib_DATA = gcc-builtins.cf builtins.cf extras.cf prelude.cfa bootloader.c 329 309 AM_CFLAGS = -g -Wall -Wno-unused-function -fPIC @ARCH_FLAGS@ @CONFIG_CFLAGS@ 330 310 AM_CFAFLAGS = @CONFIG_CFAFLAGS@ 331 311 MOSTLYCLEANFILES = bootloader.c builtins.cf extras.cf gcc-builtins.c gcc-builtins.cf prelude.cfa 332 312 MAINTAINERCLEANFILES = ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}} 333 all: defines.hfa 334 $(MAKE) $(AM_MAKEFLAGS) all-am 313 all: all-am 335 314 336 315 .SUFFIXES: … … 365 344 $(am__aclocal_m4_deps): 366 345 367 defines.hfa: stamp-h1368 @test -f $@ || rm -f stamp-h1369 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1370 371 stamp-h1: $(srcdir)/defines.hfa.in $(top_builddir)/config.status372 @rm -f stamp-h1373 cd $(top_builddir) && $(SHELL) ./config.status prelude/defines.hfa374 $(srcdir)/defines.hfa.in: $(am__configure_deps)375 ($(am__cd) $(top_srcdir) && $(AUTOHEADER))376 rm -f stamp-h1377 touch $@378 379 distclean-hdr:380 -rm -f defines.hfa stamp-h1381 382 346 mostlyclean-libtool: 383 347 -rm -f *.lo … … 406 370 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ 407 371 dir='$(DESTDIR)$(cfalibdir)'; $(am__uninstall_files_from_dir) 408 409 ID: $(am__tagged_files) 410 $(am__define_uniq_tagged_files); mkid -fID $$unique 411 tags: tags-am 412 TAGS: tags 413 414 tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) 415 set x; \ 416 here=`pwd`; \ 417 $(am__define_uniq_tagged_files); \ 418 shift; \ 419 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ 420 test -n "$$unique" || unique=$$empty_fix; \ 421 if test $$# -gt 0; then \ 422 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 423 "$$@" $$unique; \ 424 else \ 425 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 426 $$unique; \ 427 fi; \ 428 fi 429 ctags: ctags-am 430 431 CTAGS: ctags 432 ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) 433 $(am__define_uniq_tagged_files); \ 434 test -z "$(CTAGS_ARGS)$$unique" \ 435 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ 436 $$unique 437 438 GTAGS: 439 here=`$(am__cd) $(top_builddir) && pwd` \ 440 && $(am__cd) $(top_srcdir) \ 441 && gtags -i $(GTAGS_ARGS) "$$here" 442 cscopelist: cscopelist-am 443 444 cscopelist-am: $(am__tagged_files) 445 list='$(am__tagged_files)'; \ 446 case "$(srcdir)" in \ 447 [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ 448 *) sdir=$(subdir)/$(srcdir) ;; \ 449 esac; \ 450 for i in $$list; do \ 451 if test -f "$$i"; then \ 452 echo "$(subdir)/$$i"; \ 453 else \ 454 echo "$$sdir/$$i"; \ 455 fi; \ 456 done >> $(top_builddir)/cscope.files 457 458 distclean-tags: 459 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags 372 tags TAGS: 373 374 ctags CTAGS: 375 376 cscope cscopelist: 377 460 378 461 379 distdir: $(DISTFILES) … … 491 409 check-am: all-am 492 410 check: check-am 493 all-am: Makefile $(DATA) defines.hfa411 all-am: Makefile $(DATA) 494 412 installdirs: 495 413 for dir in "$(DESTDIR)$(cfalibdir)"; do \ … … 534 452 distclean: distclean-am 535 453 -rm -f Makefile 536 distclean-am: clean-am distclean-generic distclean-hdr distclean-tags454 distclean-am: clean-am distclean-generic 537 455 538 456 dvi: dvi-am … … 595 513 uninstall-am: uninstall-cfalibDATA 596 514 597 .MAKE: all install-am install-strip 598 599 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ 600 clean-libtool cscopelist-am ctags ctags-am distclean \ 601 distclean-generic distclean-hdr distclean-libtool \ 602 distclean-tags distdir dvi dvi-am html html-am info info-am \ 515 .MAKE: install-am install-strip 516 517 .PHONY: all all-am check check-am clean clean-generic clean-libtool \ 518 cscopelist-am ctags-am distclean distclean-generic \ 519 distclean-libtool distdir dvi dvi-am html html-am info info-am \ 603 520 install install-am install-cfalibDATA install-data \ 604 521 install-data-am install-dvi install-dvi-am install-exec \ … … 609 526 maintainer-clean-generic maintainer-clean-local mostlyclean \ 610 527 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ 611 tags tags-am uninstall uninstall-am uninstall-cfalibDATA528 tags-am uninstall uninstall-am uninstall-cfalibDATA 612 529 613 530 .PRECIOUS: Makefile
Note:
See TracChangeset
for help on using the changeset viewer.