Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
Depending on a folder is dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Sep 25, 2011
1 parent 1f67836 commit 88c9df2
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions Makefile
Expand Up @@ -75,9 +75,11 @@ man/man1/README.1: README.md scripts/doc-build.sh package.json
scripts/doc-build.sh $< $@

man/man1/%.1: doc/cli/%.md scripts/doc-build.sh package.json
@[ -d man/man1 ] || mkdir -p man/man1
scripts/doc-build.sh $< $@

man/man3/%.3: doc/api/%.md man/man3 node_modules/ronn
man/man3/%.3: doc/api/%.md scripts/doc-build.sh package.json
@[ -d man/man3 ] || mkdir -p man/man3
scripts/doc-build.sh $< $@

html/doc/README.html: README.md html/dochead.html html/docfoot.html scripts/doc-build.sh package.json
Expand All @@ -96,12 +98,6 @@ doc: man

man: $(cli_docs) $(api_docs)

man/man1:
[ -d man/man1 ] || mkdir -p man/man1

man/man3:
[ -d man/man3 ] || mkdir -p man/man3

test: submodules
node cli.js test

Expand Down

0 comments on commit 88c9df2

Please sign in to comment.