summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 8dadd5e8746d7fc2ed0b8dca4b4640e5494319dc (plain)
1
2
3
4
5
6
7
8
9
BUILD_DIR=build

all: compile

compile: ${BUILD_DIR}
	make -C ${BUILD_DIR}

${BUILD_DIR}:
	mkdir -p ${BUILD_DIR}