mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
11 lines
168 B
Makefile
11 lines
168 B
Makefile
.PHONY: all
|
|
all: hellopythonmi
|
|
|
|
hellopythonmi: hellopythonmi.cpp
|
|
g++ -g -o hellopythonmi hellopythonmi.cpp
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f hellopythonmi hellopythonmi.o
|
|
|