summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorckgt <ckarlsson25@gmail.com>2019-05-20 01:48:41 -0400
committerGitHub <noreply@github.com>2019-05-20 01:48:41 -0400
commit5ce6ddf1cd7d219045a15133dd22068ad4501dcf (patch)
tree606df3ee811c5512c489484c6327e75e23b7a62a /makefile
parentaf1651176e142d10b113d2fc322076917414db3c (diff)
parenta217514592896e360e29381504c95f308da88889 (diff)
Merge pull request #9 from SunBlack/CMake_support
WIP: 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