brickworks/test/Makefile

17 lines
215 B
Makefile
Raw Normal View History

CC := gcc
CFLAGS := -I../include
all: build/bw_math
./build/bw_math
build/bw_math: bw_math.c ../include/bw_math.h | build
2023-09-26 06:28:20 +00:00
${CC} ${CFLAGS} bw_math.c -o $@
build:
mkdir -p $@
clean:
rm -fr build/
.PHONY: all