Changeset 1390:c8639bc29ac3
- Timestamp:
- 10/22/09 18:26:04 (2 years ago)
- Branch:
- default
- Location:
- src
- Files:
-
- 3 edited
-
configure (modified) (2 diffs)
-
configure.in (modified) (1 diff)
-
examples/Makefile.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/configure
r1386 r1390 641 641 LIBOBJS 642 642 DEBUG 643 TESTS643 EXAMPLES 644 644 DEPS 645 645 OBJECTS … … 5374 5374 5375 5375 5376 TESTS=$(for i in examples/*; do test -d $i && echo -n "${i#tests/} "; done)5376 EXAMPLES=$(for i in examples/*; do test -d $i && echo -n "${i#examples/} "; done) 5377 5377 5378 5378 cat > include/libdodo/directives.runtime.h <<EOF -
src/configure.in
r1386 r1390 74 74 DEPS=$(for i in src/*cc; do i=${i#src/}; echo -n "${i/%cc/d} "; done) 75 75 76 AC_SUBST( TESTS)77 TESTS=$(for i in examples/*; do test -d $i && echo -n "${i#tests/} "; done)76 AC_SUBST(EXAMPLES) 77 EXAMPLES=$(for i in examples/*; do test -d $i && echo -n "${i#examples/} "; done) 78 78 79 79 cat > include/libdodo/directives.runtime.h <<EOF -
src/examples/Makefile.in
r1386 r1390 1 TESTS=@TESTS@1 EXAMPLES=@EXAMPLES@ 2 2 3 .PHONY:$( TESTS)3 .PHONY:$(EXAMPLES) 4 4 5 all: $( TESTS)6 $( TESTS):5 all: $(EXAMPLES) 6 $(EXAMPLES): 7 7 @echo "-- Building test for $@"; $(MAKE) -s -C $@; if test $$? != 0; then echo "-- Building test for $@ failed" >&2; exit $$?; fi 8 8 9 9 clean: 10 @for i in $( TESTS); do $(MAKE) -s -C $$i clean; done;10 @for i in $(EXAMPLES); do $(MAKE) -s -C $$i clean; done; 11 11
Note: See TracChangeset
for help on using the changeset viewer.
