blob: 36105b5c1cad8cbb176a811e27c5af3339fe9269 (
plain) (
tree)
|
|
# Copyright 2022 Gabriel Jensen.
# This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
# If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
LIBZAP = zap/libzap.a
.PHONY: clean install purge
$(LIBZAP):
$(MAKE) -Czap
install: $(LIBZAP)
mkdir -pm755 "$(HDRDIR)/zap"
mkdir -pm755 "$(LIBDIR)"
install -m644 "zap/include/zap/"*".h" "$(HDRDIR)/zap"
install -m755 "$(LIBZAP)" "$(LIBDIR)"
clean:
$(MAKE) -Czap clean
purge:
$(MAKE) -Czap purge
|