box-o-sand/oldstuff/lcthw-remnants/ex19.mk
2015-06-22 13:15:42 -05:00

18 lines
126 B
Makefile

CFLAGS := -Wall -g
all: ex19
ex19: object.o
test:
./test_ex19.sh
clean:
rm -f ex19 object.o
.PHONY: all test clean