home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume26 / pstext / part01 / Makefile next >
Encoding:
Makefile  |  1991-11-25  |  340 b   |  17 lines

  1. CC= /bin/cc
  2. DEST= /usr/local/bin
  3. MANDIR= /usr/man/manl
  4. PSTEXT_SRC=    pstext.c
  5. PSTEXT_OBJ=    pstext.o
  6.  
  7. all:    pstext
  8.  
  9. pstext:    $(PSTEXT_OBJ)
  10.     $(CC) -O -o pstext $(PSTEXT_OBJ)
  11.  
  12. install: pstext
  13.     install -c -m 755 -o bin -g bin pstext $(DEST)
  14.     install -c -m 755 -o bin -g bin pstext.1 $(MANDIR)/pstext.l
  15. clean:    
  16.     rm -f $(PSTEXT_OBJ) pstext a.out core
  17.