home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume5 / untic / Makefile next >
Encoding:
Makefile  |  1986-11-30  |  253 b   |  18 lines

  1. CFLAGS = -O
  2. DESTDIR = /usr/local/bin
  3. DOCDIR = /usr/local/man/man1
  4.  
  5. untic:    untic.c
  6.     $(CC) $(CFLAGS) untic.c -o untic
  7.  
  8. lint:
  9.     lint untic.c
  10.  
  11. install:    untic
  12.     cp untic $(DESTDIR)/untic
  13.     strip $(DESTDIR)/untic
  14. #    cp untic.1 $(DOCDIR)/untic.1
  15.  
  16. clean:
  17.     rm untic
  18.