summaryrefslogtreecommitdiff
path: root/impl/Makefile
blob: 1d2eb4be2448e75f39c0b6d5009374dcc3ecd432 (about) (plain)
1
2
3
4
5
6
7
8
CC=g++
BUILD=build/

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

build-dir:
	mkdir -p $(BUILD)