f2380eef05
git-subtree-dir: lcthw-remnants git-subtree-mainline:4107485591
git-subtree-split:e172f73c82
18 lines
126 B
Makefile
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
|