diff --git a/.gitignore b/.gitignore index 2f1c380..5142581 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,6 @@ compiled/ *.dep doc +scrbl/*.js +scrbl/*.html +scrbl/*.css \ No newline at end of file diff --git a/examples/Makefile.rkt b/examples/Makefile.rkt index c6c38c5..66b4dbf 100644 --- a/examples/Makefile.rkt +++ b/examples/Makefile.rkt @@ -2,16 +2,16 @@ (require rash-makefile) -(makefile demo - (default-target status) - (phony status clean all) +(makefile 'demo + (default-target 'status) + (phony 'status 'clean 'all) - (target status + (target 'status (displayln "status target")) - (target clean + (target 'clean (displayln "clean target")) - (target all - (deps status) + (target 'all + (deps 'status) (displayln "all target"))) diff --git a/info.rkt b/info.rkt index 8886484..9314d8e 100644 --- a/info.rkt +++ b/info.rkt @@ -1,7 +1,7 @@ #lang info (define pkg-authors '(hnmdijkema)) -(define version "0.1.0") +(define version "0.1.1") (define license 'MIT) (define collection "rash-makefile") (define pkg-desc diff --git a/scrbl/rash-makefile.scrbl b/scrbl/rash-makefile.scrbl index 66f62e6..0b93db1 100644 --- a/scrbl/rash-makefile.scrbl +++ b/scrbl/rash-makefile.scrbl @@ -1,7 +1,6 @@ #lang scribble/manual @(require (for-label racket - racket-makefile rash-makefile)) @title{rash-makefile} diff --git a/tests/rash.rkt b/tests/rash.rkt index 62e4150..47bed77 100644 --- a/tests/rash.rkt +++ b/tests/rash.rkt @@ -16,10 +16,10 @@ (λ (out) (displayln "#lang rash" out) (displayln "(require rash-makefile)" out) - (displayln "(makefile demo" out) - (displayln " (default-target status)" out) - (displayln " (phony status)" out) - (displayln " (target status" out) + (displayln "(makefile 'demo" out) + (displayln " (default-target 'status)" out) + (displayln " (phony 'status)" out) + (displayln " (target 'status" out) (displayln " (call-with-output-file \"status.out\"" out) (displayln " #:exists 'truncate/replace" out) (displayln " (λ (o) (display \"status\" o)))))" out)))