home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / DRIVERS / SRC / ptys.lzh / makefile.old < prev    next >
Makefile  |  1990-03-18  |  430b  |  27 lines

  1. OPTIONS =  -k=2f -t=/dd -w=/dd/lib
  2. #
  3. #
  4. RC=r68020
  5. CFLAGS    = -t=/dd -S $(OPTIONS)
  6. LFLAGS    = -g 
  7.  
  8. SYSLIB    = -l=/h0/LIB/sys.l
  9. CLIB      = -l=/h0/LIB/clib.l
  10.  
  11. OBJS    = cpty.r ptyman.r funcs.r miscasm.r
  12. LIBOBJS =
  13.  
  14. PtyMan: $(OBJS) ptyman.h
  15.   l68  $(OBJS) $(CLIB) $(SYSLIB) $(LFLAGS) -s -o
  16.  
  17.  
  18. PtyDrv: ptydrv.r ptystat.r
  19.   l68  $(SYSLIB) ptystat.r  $@.r $(LFLAGS)
  20.  
  21. pty: pty.r
  22.   l68   $(SYSLIB) $@.r
  23.  
  24. tty: tty.r
  25.     l68   $(SYSLIB) $@.r
  26.  
  27.