home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / UUCP_Blars.lzh / Makefile < prev    next >
Makefile  |  1992-01-06  |  906b  |  33 lines

  1. CFLAGS =    -t=/r0 -v=/h0/blarslib/defs
  2. RDIR   =    RELS
  3. ODIR   =        /h0/cmds
  4. LIBS   =        -l=/h0/blarslib/blarslib.l
  5. LFLAGS =    -i -m=10 -bg
  6.  
  7. OBJS = dcp.r dcpsys.r dcpxfer.r dcpgpkt.r dcpfpkt.r dcpmisc.r dcpio.r mfgets.r
  8.  
  9. all: $(ODIR)/uucico $(ODIR)/uux $(ODIR)/uuxqt $(ODIR)/uucp $(ODIR)/uupoll
  10. # $(ODIR)/mail $(ODIR)/lmail $(ODIR)/uumailclean
  11.   @touch all.date
  12.  
  13. $(ODIR)/uucico:    $(OBJS)
  14.   chd $(RDIR); cc $(LFLAGS) $(OBJS) -f=$@ $(LIBS)
  15.   attr -e -pe $@
  16.  
  17. $(ODIR)/uux: uux.r getseq.r
  18.   chd $(RDIR); cc $(LFLAGS) uux.r getseq.r -f=$@ $(LIBS)
  19.   attr -e -pe $@
  20.  
  21. $(ODIR)/uuxqt: uuxqt.r mfgets.r getargs.r
  22.   chd $(RDIR); cc $(LFLAGS) uuxqt.r mfgets.r getargs.r -f=$@ $(LIBS)
  23.   attr -e -pe $@
  24.  
  25. $(ODIR)/uucp: uucp.r mfgets.r getseq.r
  26.   chd $(RDIR); cc $(LFLAGS) uucp.r mfgets.r getseq.r -f=$@ $(LIBS)
  27.   attr -e -pe $@
  28.  
  29. $(ODIR)/uupoll: uupoll.r
  30.   chd $(RDIR); cc $(LFLAGS) uupoll.r -f=$@ $(LIBS)
  31.   attr -e -pe $@
  32.  
  33.