home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 3 / 3174 / Makefile < prev    next >
Encoding:
Makefile  |  1991-04-08  |  643 b   |  34 lines

  1. # Makefile for PS utilities
  2.  
  3. CFLAGS=-O
  4.  
  5. # epsffit fits an epsf file to a given bounding box
  6. # psbook rearranges pages into signatures
  7. # psselect selects page ranges
  8. # pstops performs general page rearrangement and merging
  9.  
  10. all: psbook psselect pstops epsffit
  11.  
  12. epsffit: epsffit.c
  13.     $(CC) $(CFLAGS) -o epsffit epsffit.c
  14.  
  15. psbook: psbook.o psutil.o
  16.     $(CC) -o psbook psutil.o psbook.o
  17.  
  18. psselect: psselect.o psutil.o
  19.     $(CC) -o psselect psutil.o psselect.o
  20.  
  21. pstops: pstops.o psutil.o
  22.     $(CC) -o pstops psutil.o pstops.o
  23.  
  24. psbook.c: psutil.h
  25.  
  26. pstops.c: psutil.h
  27.  
  28. psutil.c: psutil.h
  29.  
  30. psselect.c: psutil.h
  31.  
  32. clean:
  33.     rm -f *.o psbook psselect pstops epsffit
  34.