home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / EXTRA-ST / CPM-80-E / CPM-0.2 / CPM-0 / cpm-0.2 / z80-sources / system / Makefile < prev    next >
Encoding:
Makefile  |  1994-06-06  |  219 b   |  19 lines

  1. TARGETS = cpm.sys xccp.com
  2.  
  3. ASM=cpm m80
  4. LNK=cpm l80
  5.  
  6. %.rel: %.mac biosbase.def
  7.     $(ASM) =$<
  8.  
  9. %.com: %.rel
  10.     $(LNK) $<,$</n/e
  11.  
  12. all: $(TARGETS)
  13.  
  14. clean:
  15.     rm -f *~ *.rel $(TARGETS)
  16.  
  17. cpm.sys: zccp.rel
  18.     $(LNK) zccp,cpm.sys/n/e
  19.