aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: a051ceda22b5ac20be83ba2a40c0a14da6edfc3b (plain)
1
2
3
4
5
6
7
8
9
10
11
CPPFLAGS=-std=c++11
CC=g++
TARGET=jarkko

all: jarkko

jarkko: *.cpp
	$(CC) *.cpp $(CPPFLAGS) -o $(TARGET)

clean:
	rm $(TARGET)