Add example helloworld and configuration

This commit is contained in:
2018-07-26 13:07:42 +09:00
parent 196e865cda
commit 30a9b33d76
4 changed files with 31 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
.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 -f hello