blank project
This commit is contained in:
commit
6b8b16c70a
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
*~
|
||||
*.o
|
||||
multisnap_display
|
16
Makefile
Normal file
16
Makefile
Normal 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
1
README
Normal file
@ -0,0 +1 @@
|
||||
A quick experiment to see how a C++ version would shape up.
|
Loading…
Reference in New Issue
Block a user