diff options
| author | ckgt <ckarlsson25@gmail.com> | 2016-08-16 15:29:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-16 15:29:08 -0400 |
| commit | a88f95db5ab5927b32991d115f369e5522453f55 (patch) | |
| tree | bbd704a05cc15a33e1806569bf6f5f1e290a869f /makefile | |
| parent | 58a7ad55fe4a7b9a1978b73857c125878c304f68 (diff) | |
Create sample makefile
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..62fe13b --- /dev/null +++ b/makefile @@ -0,0 +1,16 @@ +# Simple makefile for the demos in the top level directory. + + +all: simple advanced + @echo "Done!" + +advanced: + g++ -std=c++11 -Iinclude src/*.cpp demo_advanced.cpp -o advanced + + +simple: + g++ -std=c++11 -Iinclude src/*.cpp demo_simple.cpp -o simple + +clean: + rm -f simple + rm -f advanced |
