Files
seer/tests/helloxmas/Makefile
T
2022-12-25 14:14:51 -06:00

11 lines
140 B
Makefile

.PHONY: all
all: helloxmas
helloxmas: helloxmas.cpp
g++ -g -o helloxmas helloxmas.cpp
.PHONY: clean
clean:
rm -f helloxmas helloxmas.o