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

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*~
*.o
multisnap_display

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)

1
README Normal file
View File

@ -0,0 +1 @@
A quick experiment to see how a C++ version would shape up.

7
main.cc Normal file
View File

@ -0,0 +1,7 @@
#include <iostream>
int main(int argc, char **argv)
{
std::cout << "Hello, world!" << std::endl;
return 0;
}