summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/makefile b/makefile
deleted file mode 100644
index 91d5cf7..0000000
--- a/makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-# Simple makefile for the demos in the top level directory.
-
-.PHONY: advanced simple
-
-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