Changes in / [1a2a49b:364a03c]


Ignore:
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r1a2a49b r364a03c  
    1919
    2020MAINTAINERCLEANFILES = lib/* bin/* tests/.deps/* tests/.out/* # order important
    21 DISTCLEANFILES = version
    2221
    2322SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@
     
    5150        @./config.status --config | sed "s/ /\n\t/g; s/\t'/\t/g; s/'\n/\n/g; s/^'//g; s/'$$//g"
    5251        @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

    r1a2a49b r364a03c  
    2828        @test -z "$(CFA_BINDIR)" || $(MKDIR_P) "$(CFA_BINDIR)"
    2929        @echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) cfa '$(CFA_BINDIR)/$(CFA_NAME)'"; \
    30         chmod u+w $(CFA_BINDIR);\
    3130        $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) cfa $(CFA_BINDIR)/$(CFA_NAME) || exit $$?
    3231
  • libcfa/prelude/Makefile.am

    r1a2a49b r364a03c  
    7070
    7171MOSTLYCLEANFILES = bootloader.c builtins.cf extras.cf gcc-builtins.c gcc-builtins.cf prelude.cfa
    72 DISTCLEANFILES = $(DEPDIR)/builtins.Po
    7372MAINTAINERCLEANFILES = ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}}
    7473
  • libcfa/src/Makefile.am

    r1a2a49b r364a03c  
    197197        -rm -rf ${CFA_INCDIR} ${CFA_LIBDIR}
    198198
    199 distclean-local:
    200         find ${builddir} -path '*.Plo' -delete
    201 
    202199
    203200# $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
  • tests/Makefile.am

    r1a2a49b r364a03c  
    102102        @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${concurrent} ${timeouts} --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
    103103
    104 mostlyclean-local :
     104clean-local :
    105105        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
    113106
    114107list :
Note: See TracChangeset for help on using the changeset viewer.