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 < prev    next >
Makefile  |  1990-03-18  |  551b  |  25 lines

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