summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorHeiko Thiel <heiko.thiel@hpi.de>2019-05-10 16:53:59 +0200
committerHeiko Thiel <heiko.thiel@hpi.de>2019-05-10 16:53:59 +0200
commita217514592896e360e29381504c95f308da88889 (patch)
treee116c8bd41ce0c2c75c9aecdaaaef7fb0929fe41 /makefile
parentd8e490622a2693b4b49598d194aab1139d4e821b (diff)
Added CMake support to generate a static library
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