some documentation and tests
This commit is contained in:
@@ -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")))
|
||||
|
||||
Reference in New Issue
Block a user