home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / N / TCPIP / NETKIT-B.05 / NETKIT-B / NetKit-B-0.05 / tftpd / Makefile < prev    next >
Encoding:
Makefile  |  1994-06-08  |  224 b   |  13 lines

  1. OBJS = tftpd.o ../tftp/tftpsubs.o
  2. CFLAGS += -Dsin=x_sin
  3.  
  4. tftpd: tftpd.o ../tftp/tftpsubs.o
  5.  
  6. install: tftpd
  7.     install -s -m744 tftpd /usr/sbin/in.tftpd
  8.     install -m644 tftpd.8 /usr/man/man8/in.tftpd.8
  9.  
  10. clean:
  11.     rm -f *.o tftpd
  12.  
  13.