Skip to content

Commit

Permalink
add zip task to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
lots0logs committed Oct 23, 2016
1 parent 5f85cec commit 5ccc199
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ RES_DIR320=src/gtk-3.20
SCSS_DIR320=$(RES_DIR320)/scss
DIST_DIR320=$(RES_DIR320)/dist
INSTALL_DIR=$(DESTDIR)/usr/share/themes/Numix
ROOT_DIR=${PWD}
UTILS=scripts/utils.sh

all: clean gresource
Expand All @@ -31,6 +32,7 @@ clean:
rm -f $(RES_DIR)/gtk.gresource
rm -rf $(DIST_DIR320)
rm -f $(RES_DIR320)/gtk.gresource
rm -rf $(ROOT_DIR)/dist

install: all
$(UTILS) install $(INSTALL_DIR)
Expand All @@ -41,6 +43,11 @@ uninstall:
changes:
$(UTILS) changes

zip: all
mkdir $(ROOT_DIR)/dist
$(UTILS) install $(ROOT_DIR)/dist/Numix
cd $(ROOT_DIR)/dist && zip --symlinks -rq Numix Numix


.PHONY: all
.PHONY: css
Expand Down

0 comments on commit 5ccc199

Please sign in to comment.