## Set these to your desired installation locations
BINDIR = /usr/local/bin
INCDIR = /usr/local/include
LIBDIR = /usr/local/lib

all:
	cd lib-lucre-0.9.0 && make
	cd client && make

install: all
	-mkdir -p $(BINDIR) $(INCDIR) $(LIBDIR)
	install client/s-lc $(BINDIR)
	install lib-lucre-0.9.0/lucre.h $(INCDIR)
	install lib-lucre-0.9.0/libucre.a $(LIBDIR)
