summaryrefslogtreecommitdiff
path: root/impl/Makefile
blob: 05e4a83b0a8e87d218b1cdc3c9093688bd0e20a4 (about) (plain)
1
2
3
4
5
6
7
8
9
CC=g++
BUILD=build/
FLAGS=-Wall -Werror -g

all: build-dir
	$(CC) main.cpp $(FLAGS) -o $(BUILD)/main

build-dir:
	mkdir -p $(BUILD)