summaryrefslogtreecommitdiff
path: root/makefile
blob: 62fe13b4eb8f5ec9806abae90597693c26f4f30b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Simple makefile for the demos in the top level directory.


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