mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 17:10:44 +08:00
11 lines
192 B
Makefile
11 lines
192 B
Makefile
|
|
.PHONY: all
|
||
|
|
all: helloansicodes2
|
||
|
|
|
||
|
|
helloansicodes2: helloansicodes2.c printfcolor.h
|
||
|
|
g++ -g -o helloansicodes2 helloansicodes2.c
|
||
|
|
|
||
|
|
.PHONY: clean
|
||
|
|
clean:
|
||
|
|
rm -f helloansicodes2 helloansicodes2.o
|
||
|
|
|