home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
text
/
jed
/
macros
/
make
< prev
next >
Wrap
Text File
|
1995-02-27
|
453b
|
21 lines
; 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')
})
})