diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-01-25 11:09:12 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-01-25 11:09:12 -0800 |
commit | 8b2e2e623facbce81583086446555f9282652eab (patch) | |
tree | e620193f235dfa0b393840c36a97878698b4a9f5 | |
parent | be72a776b71dd50132640c65ccfbc58d00a7677b (diff) | |
download | pandoc-8b2e2e623facbce81583086446555f9282652eab.tar.gz |
Fixed Makefile PHONY line.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ # This Makefile is for development only. It requires cabal-dev. # To get started, do 'make prep' and then 'make' or 'make quick'. -.PHONY: prep, submodules, all, quick, bench, clean, veryclean, install, sdist +.PHONY: prep submodules all quick bench clean veryclean install sdist all: cabal-dev configure --enable-tests --enable-benchmarks && cabal-dev build |