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.

18 lines
126 B

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