mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
11 lines
210 B
Makefile
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
|
||
|
|
|