box-o-sand/lcthw/Makefile
2024-04-15 19:59:15 -04:00

17 lines
149 B
Makefile

CFLAGS ?= -Wall -g
.PHONY: all
all: build test
.PHONY: clean
clean:
rm -f ex1 ex3
.PHONY: build
build: ex1 ex3
.PHONY: test
test:
./ex1
./ex3