Extend basic support for serializing simple data types.
[cumulus.git] / Makefile
1 CXXFLAGS=-O -Wall -D_FILE_OFFSET_BITS=64 -g
2 LDFLAGS=-g
3
4 OBJS=scandir.o store.o
5
6 scandir : $(OBJS)
7         $(CXX) $(LDFLAGS) -o $@ $^