diff options
Diffstat (limited to 'mbld/bldfile')
-rw-r--r-- | mbld/bldfile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mbld/bldfile b/mbld/bldfile new file mode 100644 index 0000000..45d21bd --- /dev/null +++ b/mbld/bldfile @@ -0,0 +1,22 @@ +# the mbld binary +bin mbld = + build.myr + clean.myr + config.myr # config, as generated by the ./configure script + config+plan9-x64.myr # config, as hardcoded for Plan 9 + deps.myr + fsel.myr + install.myr + main.myr + opts.myr + parse.myr + subdir.myr + test.myr + types.myr + util.myr +;; + +gen config.myr {durable} = ./configure ;; + +man = mbld.1;; + |