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
|
2024-11-10 12:40:43 -06:00
|
|
|
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:
|
2024-11-10 12:40:43 -06:00
|
|
|
rm -f helloworld helloworld.o function1.o valueoflife.o
|
2021-09-05 11:58:58 -05:00
|
|
|
|