18 lines
278 B
Racket
18 lines
278 B
Racket
#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")))
|