.PHONY: all clean test

all: StackedIt

StackedIt: src/*.h src/*.cc
	$(MAKE) -C src

clean:
	$(MAKE) -C src clean

test:

