blank project

This commit is contained in:
Joe Thornber
2011-06-16 08:16:10 +01:00
commit 6b8b16c70a
4 changed files with 27 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
SOURCE=\
main.cc
OBJECTS=$(subst .cc,.o,$(SOURCE))
CPPFLAGS=-Wall -Weffc++ -std=c++0x
INCLUDES=
LIBS=-lstdc++
.SUFFIXES: .cc .o
.cc.o:
g++ -c $(CPPFLAGS) $(INCLUDES) -o $@ $<
multisnap_display: $(OBJECTS)
g++ -o $@ $+ $(LIBS)