Changeset 2a59655
- Timestamp:
- Dec 9, 2020, 3:01:28 PM (3 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 1a2a49b
- Parents:
- d7a10af
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
rd7a10af r2a59655 19 19 20 20 MAINTAINERCLEANFILES = lib/* bin/* tests/.deps/* tests/.out/* # order important 21 DISTCLEANFILES = version 21 22 22 23 SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@ … … 50 51 @./config.status --config | sed "s/ /\n\t/g; s/\t'/\t/g; s/'\n/\n/g; s/^'//g; s/'$$//g" 51 52 @find libcfa -name config.status -printf "\n%h\n\t" -exec {} --config \; | sed "s/ /\n\t/g; s/\t'/\t/g; s/'\n/\n/g; s/^'//g; s/'$$//g" 53 54 mostlyclean-local: @LIBCFA_TARGET_MAKEFILES@ 55 for dir in @LIBCFA_TARGET_DIRS@; do \ 56 $(MAKE) -C $${dir} mostlyclean; \ 57 done 58 59 clean-local: @LIBCFA_TARGET_MAKEFILES@ 60 for dir in @LIBCFA_TARGET_DIRS@; do \ 61 $(MAKE) -C $${dir} clean; \ 62 done 63 64 distclean-local: @LIBCFA_TARGET_MAKEFILES@ 65 for dir in @LIBCFA_TARGET_DIRS@; do \ 66 $(MAKE) -C $${dir} distclean; \ 67 rm $${dir}/config.data; \ 68 done -
driver/Makefile.am
rd7a10af r2a59655 28 28 @test -z "$(CFA_BINDIR)" || $(MKDIR_P) "$(CFA_BINDIR)" 29 29 @echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) cfa '$(CFA_BINDIR)/$(CFA_NAME)'"; \ 30 chmod u+w $(CFA_BINDIR);\ 30 31 $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) cfa $(CFA_BINDIR)/$(CFA_NAME) || exit $$? 31 32 -
libcfa/prelude/Makefile.am
rd7a10af r2a59655 70 70 71 71 MOSTLYCLEANFILES = bootloader.c builtins.cf extras.cf gcc-builtins.c gcc-builtins.cf prelude.cfa 72 DISTCLEANFILES = $(DEPDIR)/builtins.Po 72 73 MAINTAINERCLEANFILES = ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}} 73 74 -
libcfa/src/Makefile.am
rd7a10af r2a59655 197 197 -rm -rf ${CFA_INCDIR} ${CFA_LIBDIR} 198 198 199 distclean-local: 200 find ${builddir} -path '*.Plo' -delete 201 199 202 200 203 # $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -
tests/Makefile.am
rd7a10af r2a59655 102 102 @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${concurrent} ${timeouts} --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program 103 103 104 clean-local :104 mostlyclean-local : 105 105 rm -f ${EXTRA_PROGRAMS} 106 rm -rf __pycache__ 107 find ${builddir} -path '*.o' -delete 108 find ${builddir} -path '*/.err/*.log' -delete 109 find ${builddir} -path '*/.out/*.log' -delete 110 111 distclean-local : 112 find ${builddir} -path '*.Po' -delete 106 113 107 114 list :
Note: See TracChangeset
for help on using the changeset viewer.