home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume24 / untic / Makefile next >
Makefile  |  1991-06-05  |  361b  |  21 lines

  1. CFLAGS = -DSYSVR3 -DSTRICT_TERMINFO_COMPATIBILITY -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.  
  19. shar:
  20.     shar README Makefile untic.1 untic.c untic.tst >untic.shar
  21.