home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / settime / Makefile next >
Encoding:
Makefile  |  1992-03-09  |  295 b   |  22 lines

  1.  
  2. RELFILES = Makefile settime.c settime.1 settime.bat nettime
  3.  
  4. settime:    settime.o
  5.     cc settime.o -o settime
  6.     strip settime
  7.  
  8. clean:
  9.     rm -f settime
  10.     rm -f *.bak *.o
  11.     rm -f core cscope.out
  12.  
  13. manpage:
  14.     nroff -man settime.1 | more
  15.  
  16. lint:
  17.     lint settime.c
  18.  
  19. shar:
  20.     shar -b -v $(RELFILES) >settime.shar
  21.  
  22.