Files
seer/tests/hellostart/Makefile
T
2022-07-28 19:25:59 -05:00

22 lines
519 B
Makefile

# This is the default target, which will be built when
# you invoke make
.PHONY: all
all: hellostart
# This rule tells make how to build hellostart from hellostart.cpp
hellostart: hellostart.cpp
g++ -g -o hellostart hellostart.cpp
# This rule tells make to copy hellostart to the binaries subdirectory,
# creating it if necessary
.PHONY: install
install:
mkdir -p binaries
cp -p hellostart binaries
# This rule tells make to delete hellostart and hellostart.o
.PHONY: clean
clean:
rm -f hellostart hellostart.o