b2d/src/makefile
2020-05-03 12:39:44 -05:00

7 lines
97 B
Makefile

SRC=b2d
PRG=b2d
all: $(PRG)
$(PRG): $(SRC).c makefile
gcc -DMINGW -o ../$(PRG) $(SRC).c