home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / GNU_ATP_1_40.lzh / EDITLINE / makefile.osk < prev    next >
Makefile  |  1993-08-04  |  345b  |  18 lines

  1. ##  $Revision: 1.2 $
  2. ##
  3. ##  OS-9 makefile for editline library.
  4. ##
  5.  
  6. SRCS    = editline.c complete.c sysos9.c
  7.  
  8. RELS    = editline.r complete.r sysos9.r
  9.  
  10. $(RELS):
  11.     cc -r -Dstrchr=index -Dstrrchr=rindex -DNEED_STRDUP -DSYS_OS9 $(SRCS)
  12.  
  13. testit:        testit.r editline.lib
  14.     cc -f=testit testit.r -l=editline.lib
  15.  
  16. editline.l:    $(RELS)
  17.     merge $(RELS) >editline.l
  18.