#Simon Gustafsson: Add flags to enable profiling (-pg) or debug info (-g)
#Best to "make clean" after changing these, as files not recompiled automatically

#debug info
CPPFLAGS += -g
LDFLAGS  += -g

#disable assertions in code (for final version)
#CPPLAGS += -DNDEBUG


SRC_FILES  = VideoSource.cc SImage.cc my_ctrlc_trapper.cc
SRC_FILES += ArgumentParser.cc 

CC=g++


v4l2-capture-example: v4l2-capture-example.o

v4l2-capture-example.o: v4l2-capture-example.cc

clean:
	rm -f v4l2-capture-example *.o
