Files
seer/tests/helloansicodes2/Makefile
T

11 lines
192 B
Makefile
Raw Normal View History

2024-08-03 10:27:59 -05:00
.PHONY: all
all: helloansicodes2
helloansicodes2: helloansicodes2.c printfcolor.h
g++ -g -o helloansicodes2 helloansicodes2.c
.PHONY: clean
clean:
rm -f helloansicodes2 helloansicodes2.o