Skip to content
This repository was archived by the owner on Jun 1, 2022. It is now read-only.

Use slightly more standard Unix in Makefile #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ start: prepublish
http-server

index.html: Readme.md head.html foot.html package.json Makefile
cat head.html > build.html
cp head.html build.html
## Change <project name> to This
sed 's/&lt;project name&gt;/This/g' Readme.md >> build.md
sed 's/&lt;project name&gt;/This/g' Readme.md > build.md
marked -i build.md >> build.html
rm build.md
cat foot.html >> build.html
Expand Down