Skip to content

Commit

Permalink
Make 'make all' make all scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Sep 25, 2016
1 parent 89ed84e commit 3e63136
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Expand Up @@ -9,13 +9,15 @@ VCS_EXPORT = git archive --format=tar --prefix=tmp/tree/ HEAD | tar -xf -
VCS_TAG = git tag
VCS_COMMIT_AND_PUSH = git commit -a -m "Post-release version bump" && git push && git push --tags

scripts = bin/test bin/irclog2html bin/logs2html bin/irclogsearch bin/irclogserver bin/tox


.PHONY: default
default: all


.PHONY: all
all: bin/buildout bin/test
all: $(scripts)


.PHONY: check test
Expand Down Expand Up @@ -109,7 +111,6 @@ bin/buildout: python bootstrap.py
touch -c $@


scripts = bin/test bin/irclog2html bin/logs2html bin/irclogsearch bin/irclogserver bin/tox
$(scripts): bin/buildout buildout.cfg setup.py python/bin/virtualenv
bin/buildout
touch -c $(scripts)

0 comments on commit 3e63136

Please sign in to comment.