Changes in / [0d78043:ae47a23]
- Location:
- src
- Files:
-
- 4 edited
-
prelude/Makefile.am (modified) (3 diffs)
-
prelude/Makefile.in (modified) (4 diffs)
-
tests/preempt_longrun/Makefile.am (modified) (1 diff)
-
tests/preempt_longrun/Makefile.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/prelude/Makefile.am
r0d78043 rae47a23 23 23 noinst_DATA = ../libcfa/libcfa-prelude.c 24 24 25 $(DEPDIR) :26 mkdir $(DEPDIR)27 28 $(DEPDIR)/builtins.Po : $(DEPDIR)29 touch ${@}30 31 25 # create extra forward types/declarations to reduce inclusion of library files 32 26 extras.cf : extras.regx extras.c … … 46 40 # create forward declarations for cfa builtins 47 41 builtins.cf : builtins.c 48 ${AM_V_GEN}@BACKEND_CC@ -E -P ${<} -o ${@} -MD -MP -MF $(DEPDIR)/builtins.Po 49 ${AM_V_at}sed -i 's/builtins.o/builtins.cf/g' $(DEPDIR)/builtins.Po 50 51 include $(DEPDIR)/builtins.Po 42 ${AM_V_GEN}@BACKEND_CC@ -E -P ${<} -o ${@} 52 43 53 44 ../libcfa/libcfa-prelude.c : prelude.cf extras.cf gcc-builtins.cf builtins.cf ${abs_top_srcdir}/src/driver/cfa-cpp … … 57 48 ${AM_V_GEN}${abs_top_srcdir}/src/driver/cfa-cpp -tpmL bootloader.cf $@ # use src/cfa-cpp as not in lib until after install 58 49 59 maintainer-clean-local :60 rm -rf $(DEPDIR)61 62 50 MAINTAINERCLEANFILES = gcc-builtins.c gcc-builtins.cf builtins.cf extras.cf bootloader.c ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}} -
src/prelude/Makefile.in
r0d78043 rae47a23 390 390 maintainer-clean: maintainer-clean-am 391 391 -rm -f Makefile 392 maintainer-clean-am: distclean-am maintainer-clean-generic \ 393 maintainer-clean-local 392 maintainer-clean-am: distclean-am maintainer-clean-generic 394 393 395 394 mostlyclean: mostlyclean-am … … 417 416 install-ps install-ps-am install-strip installcheck \ 418 417 installcheck-am installdirs maintainer-clean \ 419 maintainer-clean-generic maintainer-clean-local mostlyclean \ 420 mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \ 421 uninstall-cfalibDATA 422 423 424 $(DEPDIR) : 425 mkdir $(DEPDIR) 426 427 $(DEPDIR)/builtins.Po : $(DEPDIR) 428 touch ${@} 418 maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ 419 pdf-am ps ps-am uninstall uninstall-am uninstall-cfalibDATA 420 429 421 430 422 # create extra forward types/declarations to reduce inclusion of library files … … 445 437 # create forward declarations for cfa builtins 446 438 builtins.cf : builtins.c 447 ${AM_V_GEN}@BACKEND_CC@ -E -P ${<} -o ${@} -MD -MP -MF $(DEPDIR)/builtins.Po 448 ${AM_V_at}sed -i 's/builtins.o/builtins.cf/g' $(DEPDIR)/builtins.Po 449 450 include $(DEPDIR)/builtins.Po 439 ${AM_V_GEN}@BACKEND_CC@ -E -P ${<} -o ${@} 451 440 452 441 ../libcfa/libcfa-prelude.c : prelude.cf extras.cf gcc-builtins.cf builtins.cf ${abs_top_srcdir}/src/driver/cfa-cpp … … 455 444 bootloader.c : bootloader.cf prelude.cf extras.cf gcc-builtins.cf builtins.cf ${abs_top_srcdir}/src/driver/cfa-cpp 456 445 ${AM_V_GEN}${abs_top_srcdir}/src/driver/cfa-cpp -tpmL bootloader.cf $@ # use src/cfa-cpp as not in lib until after install 457 458 maintainer-clean-local :459 rm -rf $(DEPDIR)460 446 461 447 # Tell versions [3.59,3.63) of GNU make to not export all variables. -
src/tests/preempt_longrun/Makefile.am
r0d78043 rae47a23 16 16 17 17 repeats=10 18 max_time=30 18 max_time=10 19 N=10ul 19 20 preempt=10_000ul 20 21 21 22 REPEAT = ${abs_top_srcdir}/tools/repeat -s 22 23 23 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -debug -O2 -D PREEMPTION_RATE=${preempt}24 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -debug -O2 -DN=${N} -DPREEMPTION_RATE=${preempt} 24 25 CFLAGS = ${BUILD_FLAGS} 25 26 CC = @CFA_BINDIR@/@CFA_NAME@ -
src/tests/preempt_longrun/Makefile.in
r0d78043 rae47a23 178 178 top_srcdir = @top_srcdir@ 179 179 repeats = 10 180 max_time = 30 180 max_time = 10 181 N = 10ul 181 182 preempt = 10_000ul 182 183 REPEAT = ${abs_top_srcdir}/tools/repeat -s 183 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -debug -O2 -D PREEMPTION_RATE=${preempt}184 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -debug -O2 -DN=${N} -DPREEMPTION_RATE=${preempt} 184 185 TESTS = barge block create disjoint processor stack wait yield 185 186 all: all-am
Note:
See TracChangeset
for help on using the changeset viewer.