pointcloud/libpc/Makefile
Paul Ramsey fe5bf854b6 Patch support, more unit tests, hexwkb,
wkb, string output.
2013-01-29 15:34:48 -08:00

34 lines
420 B
Makefile

include ../config.mk
CPPFLAGS = $(XML2_CPPFLAGS)
LDFLAGS = $(XML2_LDFLAGS)
OBJS = \
pc_mem.o \
pc_patch.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 libpc"
check:
$(MAKE) -C cunit $@