Files
seer/tests/helloarrayofstructs/Makefile
T

11 lines
210 B
Makefile
Raw Normal View History

2024-08-21 16:39:15 -05:00
.PHONY: all
all: helloarrayofstructs
helloarrayofstructs: helloarrayofstructs.cpp
g++ -g -o helloarrayofstructs helloarrayofstructs.cpp
.PHONY: clean
clean:
rm -f helloarrayofstructs helloarrayofstructs.o