Compute SHA-1 checksums of regular files to be stored with index data.
[cumulus.git] / Makefile
1 CXXFLAGS=-O -Wall -D_FILE_OFFSET_BITS=64 -g
2 LDFLAGS=-g
3
4 OBJS=scandir.o sha1.o store.o
5
6 scandir : $(OBJS)
7         $(CXX) $(LDFLAGS) -o $@ $^