Files
seer/tests/hellopythonmi/Makefile
T

11 lines
168 B
Makefile
Raw Normal View History

2023-09-30 17:14:34 -05:00
.PHONY: all
all: hellopythonmi
hellopythonmi: hellopythonmi.cpp
g++ -g -o hellopythonmi hellopythonmi.cpp
.PHONY: clean
clean:
rm -f hellopythonmi hellopythonmi.o