Files
seer/tests/hellocirlelist/Makefile
T
2022-09-01 19:17:11 -05:00

15 lines
403 B
Makefile

# This is the default target, which will be built when
# you invoke make
.PHONY: all
all: hellocirclelist
# This rule tells make how to build hellocirclelist from hellocirclelist.cpp
hellocirclelist: hellocirclelist.cpp
g++ -g -o hellocirclelist hellocirclelist.cpp
# This rule tells make to delete hellocirclelist and hellocirclelist.o
.PHONY: clean
clean:
rm -f hellocirclelist hellocirclelist.o