Begin work on an alternate object store mechanism using the TAR format.
[cumulus.git] / Makefile
index 141ce9c..eb83a3d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
 PACKAGES=uuid
 CXXFLAGS=-O -Wall -D_FILE_OFFSET_BITS=64 -g -pg \
         `pkg-config --cflags $(PACKAGES)`
-LDFLAGS=-g -pg `pkg-config --libs $(PACKAGES)`
+LDFLAGS=-g -pg -ltar `pkg-config --libs $(PACKAGES)`
 
-SRCS=scandir.cc sha1.cc store.cc
+SRCS=scandir.cc sha1.cc store.cc tarstore.cc
 OBJS=$(SRCS:.cc=.o)
 
 scandir : $(OBJS)