Files
seer/tests/helloarrayofstructs/Makefile
T
2024-08-21 16:39:15 -05:00

11 lines
210 B
Makefile

.PHONY: all
all: helloarrayofstructs
helloarrayofstructs: helloarrayofstructs.cpp
g++ -g -o helloarrayofstructs helloarrayofstructs.cpp
.PHONY: clean
clean:
rm -f helloarrayofstructs helloarrayofstructs.o