Update explanation

This commit is contained in:
Kashish Sharma 2016-07-08 15:50:09 +05:30
parent 5f483343a4
commit 6ec701dd0f
1 changed files with 3 additions and 2 deletions

View File

@ -134,8 +134,9 @@
;; will have <project-name> as output stem."
(targets
("main" target project-name)
;; and now, "band" (just what was I trying to do here with the "\1"?)
("band" target (string-append project-name "\1"))
;; and now, target "band", taking an input file "band" and creating
;; an output file called "<project-name>-band"
("band" target (string-append project-name target))
(_ (string-append "part-" target)
(string-append project-name "-" target)))