15 lines
184 B
Makefile
15 lines
184 B
Makefile
.PHONY: all
|
|
all: helloworld
|
|
|
|
helloworld: helloworld.cpp
|
|
g++ helloworld.cpp -o helloworld
|
|
|
|
.PHONY: install
|
|
install:
|
|
mkdir -p bin
|
|
mv helloworld bin
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf bin/
|