Initial commit

This commit is contained in:
Ian Gulliver
2017-07-23 22:53:02 +00:00
parent ccea67e5f4
commit e473dabcbc
2 changed files with 224 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
all: piphoto
piphoto: piphoto.cc Makefile
clang-3.9 -O3 -g -Weverything -Werror -Wno-c++98-compat -Wno-c++98-c++11-compat-pedantic --std=c++1z --stdlib=libc++ -o piphoto piphoto.cc -lc++ -lunwind -lpng
run: piphoto
./piphoto
clean:
rm -f piphoto