home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume11 / pstext / part01 / Makefile next >
Encoding:
Makefile  |  1990-04-06  |  292 b   |  16 lines

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