Files
seer/tests/helloansicodes/Makefile
T
2024-07-22 17:42:12 -05:00

11 lines
190 B
Makefile

.PHONY: all
all: helloansicodes
helloansicodes: helloansicodes.c ANSI-color-codes.h
g++ -g -o helloansicodes helloansicodes.c
.PHONY: clean
clean:
rm -f helloansicodes helloansicodes.o