-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b502f1e
commit d8770a0
Showing
2 changed files
with
18 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.PHONY: all g3a tests clean | ||
|
||
# OPTS := -j 4 | ||
|
||
all: g3a tests | ||
|
||
g3a: | ||
@echo "make g3a" | ||
@$(MAKE) --no-print-directory -f Makefile $(OPTS) | ||
|
||
tests: | ||
@echo "make tests" | ||
@cd tests && $(MAKE) --no-print-directory test -f Makefile $(OPTS) | ||
|
||
clean: | ||
@$(MAKE) --no-print-directory clean -f Makefile $(OPTS) | ||
@cd tests && $(MAKE) --no-print-directory clean -f Makefile $(OPTS) |