Files
2023-09-30 17:14:34 -05:00

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