home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / N / TCPIP / NNTP-1.000 / NNTP-1 / nntp.1.5.11t / support / Makefile < prev    next >
Encoding:
Makefile  |  1993-10-17  |  573 b   |  43 lines

  1. #
  2. # Makefile for NNTP server support programs
  3. #
  4.  
  5. OBJS    =    mkgrdates.o
  6.  
  7. SRCS    =    mkgrdates.c
  8.  
  9. HFILES    =    ../common/conf.h
  10.  
  11. CFLAGS= -O
  12.  
  13. # Where these support programs will live
  14.  
  15. DESTDIR    = /usr/lib/news
  16.  
  17. all: mkgrdates
  18.  
  19. mkgrdates: mkgrdates.o
  20.     $(CC) ${CFLAGS} -o mkgrdates mkgrdates.o
  21.  
  22. install: mkgrdates
  23.     cp mkgrdates ${DESTDIR}/mkgrdates
  24.     chmod 755 ${DESTDIR}/mkgrdates
  25.  
  26. lint:
  27.     lint mkgrdates.c
  28.  
  29. clean:
  30.     -rm -f *.o mkgrdates
  31.  
  32. distrib: clean
  33.     rm -rf SCCS old
  34.  
  35. check:
  36.     sccs check
  37.     sccs prt -y *.[ch] > /dev/null
  38.  
  39. tags:    ${SRCS} ${HFILES}
  40.     ctags ${SRCS} ${HFILES}
  41.  
  42. ${OBJS}:    ${HFILES}
  43.