home *** CD-ROM | disk | FTP | other *** search
-
- ; MAKE
- ;
- ; runs [d]make in the current directory
- ; needs Matt Dillon's fifo: device to be running
-
- (macro `make'
- {
- (local
- `marg' (arg 1 `s' `make args> ')
- )
- (if (! (system `newshell window con:///200/make/WAIT/AUTO/SCREEN from fifo:mk/rm'))
- {
- ; change "dmake" to "make", or whatever you use.
- (system (format `echo >fifo:mk/wK dmake %s' (marg)))
- (system `echo >fifo:mk/wK echo done.')
- (system `echo >fifo:mk/wKe endcli')
- })
- })
-
-