home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / internet / tcpipsrc / Finger / Makefile
Makefile  |  1995-02-22  |  317b  |  14 lines

  1. .SUFFIXES:   .c .s .o
  2. CC           = cc
  3. CCflags      = -c -ITCPIPSource:,C: $(x_cflags)
  4. ObjAsmflags  = -Stamp -NoCache -CloseExec -Quit $(x_aflags)
  5.  
  6. Files =      o.fingcli o.fingserv
  7.  
  8. ~Finger:     $(Files)
  9.              $(do)
  10.  
  11. .c.o:;       $(CC) $(CCflags) $< -o $@
  12.  
  13. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  14.