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