Skip to content

Commit

Permalink
demo on its folder
Browse files Browse the repository at this point in the history
  • Loading branch information
igormcoelho committed May 15, 2020
1 parent e6739c1 commit e3bd1d3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions demo/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
app_*
File renamed without changes.
11 changes: 9 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
all:
g++ --std=c++11 src/main_test.cpp -o appMain
all: demo

demo: demo/main_test.cpp
echo "building demo/app_demo"
g++ --std=c++11 $< -Isrc -o demo/app_demo
echo "running demo/app_demo"
demo/app_demo

test:
cd tests && make
./tests/kahan_test

.PHONY: demo

0 comments on commit e3bd1d3

Please sign in to comment.