mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2025-12-08 20:36:04 +00:00
22 lines
329 B
Makefile
22 lines
329 B
Makefile
|
|
all install uninstall noop clean distclean:
|
|
$(MAKE) -C lib $@
|
|
$(MAKE) -C pgsql $@
|
|
$(MAKE) -C pgsql_postgis $@
|
|
|
|
check:
|
|
$(MAKE) -C lib $@
|
|
|
|
installcheck:
|
|
$(MAKE) -C pgsql $@
|
|
|
|
astyle:
|
|
find . \
|
|
-name "*.c" \
|
|
-type f \
|
|
-or \
|
|
-name "*.h" \
|
|
-type f \
|
|
-exec astyle --style=ansi --indent=tab --suffix=none {} ';'
|
|
|