box-o-sand/lcthw/Makefile

17 lines
149 B
Makefile
Raw Normal View History

2024-04-15 19:22:58 +00:00
CFLAGS ?= -Wall -g
2024-04-15 23:59:15 +00:00
.PHONY: all
all: build test
2024-04-15 19:16:14 +00:00
2024-04-15 23:59:15 +00:00
.PHONY: clean
2024-04-15 19:16:14 +00:00
clean:
rm -f ex1 ex3
2024-04-15 19:22:58 +00:00
2024-04-15 23:59:15 +00:00
.PHONY: build
build: ex1 ex3
.PHONY: test
2024-04-15 19:22:58 +00:00
test:
./ex1
./ex3