diff options
author | tomsmeding <hallo@tomsmeding.nl> | 2015-05-11 10:00:29 +0200 |
---|---|---|
committer | tomsmeding <hallo@tomsmeding.nl> | 2015-05-11 10:01:23 +0200 |
commit | 95c5eb96cf65019131a97e93031d4cdf38eca3c2 (patch) | |
tree | 06226daa75ef0f5ecf50f58ce620f52e353b74a9 /Makefile |
Initial
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1f83663 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +CC=gcc +CXX=g++ +CFLAGS=-Wall -O2 +CPPFLAGS=-Wall -O2 -std=c++11 + +BINARIES=engine + + +.PHONY: all clean + +all: $(BINARIES) + +clean: + rm $(BINARIES) + + +engine: engine.cpp enginedata.o + $(CXX) $(CPPFLAGS) -o $@ $^ |