pointcloud/lib/Makefile
Paul Ramsey c7060031b5 Add dimensional compression routines, right out to the
patch level. Now to add them to SQL.
2013-03-01 16:42:15 -08:00

38 lines
535 B
Makefile

include ../config.mk
CPPFLAGS = $(XML2_CPPFLAGS) $(ZLIB_CPPFLAGS)
LDFLAGS = $(XML2_LDFLAGS) $(ZLIB_LDFLAGS)
OBJS = \
pc_bytes.o \
pc_dimstats.o \
pc_mem.o \
pc_patch.o \
pc_patch_dimensional.o \
pc_patch_uncompressed.o \
pc_point.o \
pc_pointlist.o \
pc_schema.o \
pc_util.o \
pc_val.o \
stringbuffer.o \
hashtable.o
all: $(LIBPC_A)
$(MAKE) -C cunit $@
$(LIBPC_A): $(OBJS)
ar rs $@ $^
clean:
@rm -f $(OBJS) $(LIBPC_A)
$(MAKE) -C cunit $@
install:
@echo "No install target in lib"
check:
$(MAKE) -C cunit $@