home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / trn / part01 / nntp / support.patch
Encoding:
Text File  |  1991-12-02  |  651 b   |  39 lines

  1. Index: Makefile
  2. @@ -3,7 +3,7 @@
  3.  #
  4.  
  5. -OBJS    =    mkgrdates.o
  6. +OBJS    =    acttimes.o
  7.  
  8. -SRCS    =    mkgrdates.c
  9. +SRCS    =    acttimes.c
  10.  
  11.  HFILES    =    ../common/conf.h
  12. @@ -15,18 +15,18 @@
  13.  DESTDIR    = /usr/lib/news
  14.  
  15. -all: mkgrdates
  16. +all: acttimes
  17.  
  18. -mkgrdates: mkgrdates.o
  19. -    $(CC) ${CFLAGS} -o mkgrdates mkgrdates.o
  20. +acttimes: acttimes.o
  21. +    $(CC) ${CFLAGS} -o acttimes acttimes.o
  22.  
  23. -install: mkgrdates
  24. -    cp mkgrdates ${DESTDIR}/mkgrdates
  25. -    chmod 755 ${DESTDIR}/mkgrdates
  26. +install: acttimes
  27. +    cp acttimes ${DESTDIR}/acttimes
  28. +    chmod 755 ${DESTDIR}/acttimes
  29.  
  30.  lint:
  31. -    lint mkgrdates.c
  32. +    lint acttimes.c
  33.  
  34.  clean:
  35. -    -rm -f *.o mkgrdates
  36. +    -rm -f *.o acttimes
  37.  
  38.  distrib: clean
  39.