summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile
new file mode 100644
index 0000000..36105b5
--- /dev/null
+++ b/GNUmakefile
@@ -0,0 +1,22 @@
+# 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