First import of rash-makefile
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#lang rash
|
||||
|
||||
(require rash-makefile)
|
||||
|
||||
(makefile demo
|
||||
(default-target status)
|
||||
(phony status clean all)
|
||||
|
||||
(target status
|
||||
(displayln "status target"))
|
||||
|
||||
(target clean
|
||||
(displayln "clean target"))
|
||||
|
||||
(target all
|
||||
(deps status)
|
||||
(displayln "all target")))
|
||||
Reference in New Issue
Block a user