-
Notifications
You must be signed in to change notification settings - Fork 976
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix concurent dependency build, more cleanups
- Loading branch information
1 parent
68e256c
commit 8d6760c
Showing
8 changed files
with
133 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,39 @@ | ||
#!/bin/make -f | ||
|
||
|
||
.DEFAULT: all | ||
.PHONY: all | ||
all: tap tests tests_with_deps | ||
all: tap test_deps | ||
${MAKE} tests | ||
${MAKE} tests_with_deps | ||
|
||
.PHONY: debug | ||
debug: tap test_deps | ||
${MAKE} tests | ||
${MAKE} tests_with_deps | ||
|
||
.PHONY: clean | ||
clean: | ||
cd tap && ${MAKE} clean | ||
cd tests && ${MAKE} clean | ||
cd tests_with_deps && ${MAKE} clean | ||
|
||
debug: tap tests tests_with_deps | ||
.PHONY: test_deps | ||
test_deps: | ||
cd ../deps && CC=${CC} CXX=${CXX} ${MAKE} | ||
|
||
.PHONY: tap | ||
tap: | ||
cd tap && CC=${CC} CXX=${CXX} ${MAKE} $(MAKECMDGOALS) | ||
tap: | ||
cd tap && CC=${CC} CXX=${CXX} ${MAKE} | ||
|
||
tests: tap | ||
cd tests && CC=${CC} CXX=${CXX} ${MAKE} $(MAKECMDGOALS) | ||
.PHONY: tests | ||
tests: | ||
cd tests && CC=${CC} CXX=${CXX} ${MAKE} | ||
|
||
tests_with_deps: tap tests | ||
cd tests_with_deps && CC=${CC} CXX=${CXX} ${MAKE} $(MAKECMDGOALS) | ||
.PHONY: tests_with_deps | ||
tests_with_deps: | ||
cd tests_with_deps && CC=${CC} CXX=${CXX} ${MAKE} | ||
|
||
|
||
.PHONY: clean | ||
.SILENT: clean | ||
clean: | ||
cd ../deps && ${MAKE} -s clean | ||
cd tap && ${MAKE} -s clean | ||
cd tests && ${MAKE} -s clean | ||
cd tests_with_deps && ${MAKE} -s clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
#!/bin/make -f | ||
|
||
|
||
.DEFAULT: all | ||
.PHONY: all | ||
all: deprecate_eof_support | ||
|
||
.PHONY: clean | ||
clean: | ||
cd deprecate_eof_support && ${MAKE} clean | ||
|
||
.PHONY: debug | ||
debug: deprecate_eof_support | ||
|
||
|
||
.PHONY: deprecate_eof_support | ||
deprecate_eof_support: | ||
cd deprecate_eof_support && CC=${CC} CXX=${CXX} ${MAKE} $(MAKECMDGOALS) | ||
cd deprecate_eof_support && CC=${CC} CXX=${CXX} ${MAKE} | ||
|
||
|
||
.PHONY: clean | ||
.SILENT: clean | ||
clean: | ||
cd deprecate_eof_support && ${MAKE} clean |
Oops, something went wrong.