Files
seer/tests/hellostatic/Makefile
T
2022-08-11 18:31:32 -05:00

15 lines
359 B
Makefile

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