Files
seer/tests/hellocore/Makefile
T
2025-09-07 12:43:30 -05:00

11 lines
166 B
Makefile

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