Co-Authored-By: Claude Opus 5 <[email protected]> Claude-Session: https://claude.ai/code/session_018Ae69wJS7sueQMUwNxV3nX
31 lines
871 B
Makefile
31 lines
871 B
Makefile
# libnspsl for MontaukOS
|
|
#
|
|
# Upstream: https://github.com/netsurf-browser/libnspsl (official mirror of
|
|
# git.netsurf-browser.org) (submodule at
|
|
# upstream/, pinned, no local patches).
|
|
#
|
|
# Public Suffix List lookup, used to decide cookie scope and what counts as a
|
|
# registrable domain.
|
|
|
|
UPSTREAM := upstream
|
|
|
|
PORT_NAME := libnspsl
|
|
PORT_LIB := 1
|
|
PORT_ARCHIVE := libnspsl.a
|
|
PORT_PC_IN := $(UPSTREAM)/libnspsl.pc.in
|
|
PORT_PC_VERSION := 0.1.7
|
|
PORT_HEADER_ROOT := $(UPSTREAM)/include
|
|
PORT_HEADERS := $(shell find $(UPSTREAM)/include -name '*.h' 2>/dev/null)
|
|
|
|
include ../../mk/port.mk
|
|
|
|
.PHONY: all clean
|
|
all: install-lib
|
|
|
|
$(PORT_ARCHIVE): $(shell find $(UPSTREAM)/src $(UPSTREAM)/include -name '*.c' -o -name '*.h' 2>/dev/null)
|
|
$(call ns_build,$(UPSTREAM),nspsl)
|
|
|
|
clean: clean-lib
|
|
@$(call ns_clean,$(UPSTREAM))
|
|
rm -rf $(UPSTREAM)/$(NS_BUILDDIR)
|