Created
March 7, 2013 03:41
-
-
Save layerssss/5105432 to your computer and use it in GitHub Desktop.
sample makefile for nodejs project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: components node_modules | |
components: node_modules component.json | |
node_modules/bower/bin/bower install | |
touch $@ | |
node_modules: package.json | |
npm install | |
touch $@ | |
clean: | |
rm -Rf components node_modules |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment