Skip to content

Commit

Permalink
Makalishious
Browse files Browse the repository at this point in the history
  • Loading branch information
Jade Meskill and Roy van de Water authored and Integrum User committed Dec 10, 2013
1 parent f3a9f44 commit fd9c04e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ build:
ino build

test:
mkdir -p .build
g++ -o .build/run_all spec/run_all.cpp -lcppunit
./.build/run_all
cd spec && make test

clean:
rm -f .build/run_all
Expand Down
10 changes: 10 additions & 0 deletions spec/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
build:
cd .. && make

test:
mkdir -p ../.build
g++ -o ../.build/run_all run_all.cpp -lcppunit
../.build/run_all

all:
cd .. && make all
8 changes: 8 additions & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
build:
cd .. && make

test:
cd .. && make test

all:
cd .. && make all

0 comments on commit fd9c04e

Please sign in to comment.