79 lines
2.1 KiB
Makefile
79 lines
2.1 KiB
Makefile
# Makefile for pg_morbac PostgreSQL Extension
|
|
# Multi-OrBAC: Organization-Based Access Control
|
|
|
|
EXTENSION = pg_morbac
|
|
|
|
# Read version from control file
|
|
EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed "s/default_version = '\(.*\)'/\1/")
|
|
|
|
# For development, work on source files in src/
|
|
SRC_DIR = src
|
|
DEV_SQL = $(EXTENSION).sql
|
|
DATA = $(EXTENSION)--$(EXTVERSION).sql
|
|
DOCS = README.md
|
|
|
|
# PostgreSQL extension build
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
|
|
# Custom targets
|
|
|
|
# Build versioned SQL file from source files
|
|
.PHONY: build
|
|
build:
|
|
@echo "Building release $(EXTVERSION) from source files..."
|
|
@./tools/build.sh
|
|
@if [ ! -f $(DEV_SQL) ]; then \
|
|
echo "Error: Build failed"; \
|
|
exit 1; \
|
|
fi
|
|
cp $(DEV_SQL) $(DATA)
|
|
@echo "Created $(DATA)"
|
|
@echo "Ready to install or tag: git tag v$(EXTVERSION)"
|
|
|
|
# Install extension in PostgreSQL (creates versioned file if needed)
|
|
.PHONY: install
|
|
install: build
|
|
@echo "Installing pg_morbac extension..."
|
|
$(MAKE) -f Makefile install
|
|
|
|
# Run tests with development file in temporary database
|
|
.PHONY: test
|
|
test: build
|
|
@echo "Testing with development file..."
|
|
-dropdb morbac_test 2>/dev/null || true
|
|
createdb morbac_test
|
|
@./tools/test.sh morbac_test
|
|
dropdb morbac_test
|
|
@echo "Test completed."
|
|
|
|
# Uninstall extension
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
@echo "Uninstalling pg_morbac extension..."
|
|
$(MAKE) -f Makefile uninstall
|
|
|
|
# Show help
|
|
.PHONY: help
|
|
help:
|
|
@echo "pg_morbac Makefile targets:"
|
|
@echo ""
|
|
@echo "Development:"
|
|
@echo " Edit source files in src/ directory"
|
|
@echo ""
|
|
@echo " make build - Build versioned pg_morbac--X.Y.Z.sql from src/"
|
|
@echo " make test - Build and run test suite"
|
|
@echo " make install - Build and install extension to PostgreSQL"
|
|
@echo " make uninstall - Uninstall extension from PostgreSQL"
|
|
@echo " make help - Show this help"
|
|
@echo ""
|
|
@echo "Workflow:"
|
|
@echo " 1. Edit source files in src/"
|
|
@echo " 2. make test (build and test changes)"
|
|
@echo " 3. Update version in pg_morbac.control"
|
|
@echo " 4. make build (builds versioned SQL)"
|
|
@echo " 5. git tag vX.Y.Z && git push --tags"
|
|
@echo ""
|
|
@echo ""
|