SRCDIR = src

all:
	cd $(SRCDIR) && make

ctags:
	find -name '*.h' -o -name '*.cpp' | xargs ctags

clean:
	cd $(SRCDIR) && make clean

