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.
box-o-sand/lcthw/Makefile

17 lines
149 B

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