Files
seer/tests/hellorr/Makefile
T
2023-08-26 10:50:58 -05:00

11 lines
129 B
Makefile

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