12 lines
194 B
Makefile
12 lines
194 B
Makefile
CFLAGS=-g -Wall
|
|
|
|
.PHONY := gen_data
|
|
|
|
gen_data: build/gen_data.exe
|
|
|
|
build/gen_data.exe: src/gen_data.c
|
|
mkdir -p build
|
|
gcc -o build/gen_data.exe src/gen_data.c $(CFLAGS) -O2
|
|
|
|
clean:
|
|
rm -r build
|