Files
seer/tests/hellocore/Makefile
T

11 lines
166 B
Makefile
Raw Normal View History

2025-09-07 12:43:30 -05:00
.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