mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2025-12-08 20:36:04 +00:00
11 lines
100 B
Makefile
11 lines
100 B
Makefile
OBJS = pc_core.o
|
|
|
|
all: liblwgeom.a
|
|
|
|
liblwgeom.a: $(OBJS)
|
|
ar rs $@ $^
|
|
|
|
clean:
|
|
@rm -f *.o *.a *.so
|
|
|