Files
seer/tests/helloworld/Makefile
T

14 lines
366 B
Makefile
Raw Normal View History

2023-09-07 19:12:36 -05:00
# This is the default target, which will be built when you invoke make
2021-09-05 11:58:58 -05:00
.PHONY: all
all: helloworld
2023-09-07 19:12:36 -05:00
# This rule tells make how to build the test program
2021-09-05 11:58:58 -05:00
helloworld: helloworld.cpp
g++ -g -o helloworld helloworld.cpp function1.cpp valueoflife.cpp
2021-09-05 11:58:58 -05:00
2023-09-07 19:12:36 -05:00
# This rule tells make to clean things
2021-09-05 11:58:58 -05:00
.PHONY: clean
clean:
rm -f helloworld helloworld.o function1.o valueoflife.o
2021-09-05 11:58:58 -05:00