Skip to content

Commit

Permalink
fixed a broken link and added a Makefile that test compiles all our y…
Browse files Browse the repository at this point in the history
…aws files making sure nothing broken get shipped
  • Loading branch information
Claes Wikstrom committed Mar 10, 2010
1 parent 9dfb58e commit 4fec139
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 132 deletions.
11 changes: 11 additions & 0 deletions www/Makefile
@@ -0,0 +1,11 @@

YAWS := $(wildcard *.yaws)
CHECK := $(YAWS:%.yaws=%.check)

all: $(CHECK)

clean:
rm *.check

%.check: %.yaws
../../bin/yaws --check $< ../include && touch $@
131 changes: 0 additions & 131 deletions www/history.yaws

This file was deleted.

3 changes: 2 additions & 1 deletion www/yapp_intro.yaws
Expand Up @@ -108,7 +108,8 @@ out(A) ->
{p,[],
[ "In order to make a \"yapp\" we need to know how to make an ordinary Erlang "
"application, that is we will need a directory layout as specified by the ",
{a,[{href,"http://www.erlang.org/doc/doc-5.5.1/doc/design_principles/part_frame.html"}],

{a,[{href, "http://www.erlang.org/doc/design_principles/des_princ.html" }],
"design principles"},
" and a proper appname.app file in the ebin directory. "
"Yaws itself or yapp are standard applications and can serve as introductionary "
Expand Down

0 comments on commit 4fec139

Please sign in to comment.