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