aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-02-26 15:42:46 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-02-26 15:42:46 -0500
commitfcbf59a968d90149867d94b2494b673a4f1a00d8 (patch)
tree2254850c99eebf2a2339bba64211c52f7c2ee001 /Makefile
parent459a407417d14d11045b50b807fb29fa0b7e47b9 (diff)
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..12b3c0c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,6 @@
+all:
+ g++ -std=c++17 -ggdb -pedantic -Wall -Wextra main.cpp -o main -lentityx
+
+test:
+ g++ -std=c++17 -Wall -Wextra bench.cpp -o test -O1
+