Current section

Files

Jump to
pdfium Makefile
Raw

Makefile

CUSTOM_DIR = custom
MACOS_SCRIPT = $(CUSTOM_DIR)/build-for-mac.sh
TARGETS = priv/libpdfium.dylib priv/pdfium_nif.so
all: $(TARGETS)
$(TARGETS): c_src/pdfium_nif.cpp
cd custom && ./build-for-mac.sh macos arm64 29.0.3
clean:
rm -rf $(TARGETS)
.PHONY: all clean