Files
seer/tests/helloxmas/Makefile
T

11 lines
140 B
Makefile
Raw Normal View History

2022-12-25 14:14:51 -06:00
.PHONY: all
all: helloxmas
helloxmas: helloxmas.cpp
g++ -g -o helloxmas helloxmas.cpp
.PHONY: clean
clean:
rm -f helloxmas helloxmas.o