mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
11 lines
190 B
Makefile
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
|
|
|