You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/ex19.mk

18 lines
123 B

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