Skip to content
This repository has been archived by the owner on Nov 3, 2020. It is now read-only.

Commit

Permalink
Improved Makefile, bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
dmhacker committed Dec 2, 2018
1 parent 5ed0ddd commit 0e53791
Show file tree
Hide file tree
Showing 4 changed files with 180 additions and 212 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
.PHONY: default clean
default:
mkdir -p build
$(MAKE) -C src
$(MAKE) default -C src
mv src/alexa-youtube-skill.zip build
clean:
rm -rf build
$(MAKE) clean -C src
5 changes: 4 additions & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.PHONY: default clean
default:
npm install
rm -rf etc
zip -r9 alexa-youtube-skill.zip *
zip -r9 alexa-youtube-skill.zip node_modules *.js *.json
clean:
rm -rf node_modules
Loading

0 comments on commit 0e53791

Please sign in to comment.