-
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
SR71
committed
Jul 2, 2015
1 parent
8047f79
commit dfa6399
Showing
5 changed files
with
821 additions
and
324 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# $@ -- The file name of the target of the rule. | ||
# $* -- The stem with which an implicit rule matches | ||
# $< -- The name of the first prerequisite. | ||
# $^ -- The names of all the prerequisites | ||
# $(VARS:%.cpp=%.o) -- pattern replace | ||
|
||
CC:=g++-4.9 | ||
|
||
OPTS:=-std=c++14 -fmax-errors=5 -g -O0 -Wsign-compare -Wreturn-type -Wparentheses -Wpedantic -Wconversion-null | ||
|
||
|
||
test_aga2: tests/test_aga2.cpp aga2.hpp | ||
${CC} -o test_aga2 tests/test_aga2.cpp ${OPTS} | ||
|
||
clean: | ||
rm -rf b/* bin/* |
Oops, something went wrong.