home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / g / gs252src.zip / GS252 / UNIXHEAD.MAK < prev    next >
Text File  |  1992-08-20  |  2KB  |  60 lines

  1. #    Copyright (C) 1990, 1991 Aladdin Enterprises.  All rights reserved.
  2. #    Distributed by Free Software Foundation, Inc.
  3. #
  4. # This file is part of Ghostscript.
  5. #
  6. # Ghostscript is distributed in the hope that it will be useful, but
  7. # WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. # to anyone for the consequences of using it or for whether it serves any
  9. # particular purpose or works at all, unless he says so in writing.  Refer
  10. # to the Ghostscript General Public License for full details.
  11. #
  12. # Everyone is granted permission to copy, modify and redistribute
  13. # Ghostscript, but only under the conditions described in the Ghostscript
  14. # General Public License.  A copy of this license is supposed to have been
  15. # given to you along with Ghostscript so you can know your rights and
  16. # responsibilities.  It should be in a file named COPYING.  Among other
  17. # things, the copyright notice and this notice must be preserved on all
  18. # copies.
  19.  
  20. # Partial makefile for Ghostscript, common to all Unix configurations.
  21.  
  22. # This part of the makefile gets inserted after the compiler-specific part
  23. # (xxx-head.mak) and before gs.mak and devs.mak.
  24.  
  25. # ----------------------------- Generic stuff ----------------------------- #
  26.  
  27. # Define the platform name.  For a "stock" System V platform,
  28. # use sysv_ instead of unix_.
  29.  
  30. PLATFORM=unix_
  31.  
  32. # Define the extensions for the object and executable files.
  33.  
  34. OBJ=o
  35. XE=
  36.  
  37. # Define the need for uniq.
  38.  
  39. UNIQ=
  40.  
  41. # Define the current directory prefix, shell quote string, and shell names.
  42.  
  43. EXP=./
  44. QQ=\"
  45. SHELL=/bin/sh
  46. SH=$(SHELL)
  47. SHP=$(SH) $(EXP)
  48.  
  49. # Define the compilation rules and flags.
  50.  
  51. CCFLAGS=$(GENOPT) $(CFLAGS)
  52.  
  53. .c.o: $(AK)
  54.     $(CCC) $*.c
  55.  
  56. CC0=$(CCC)
  57. CCCF=$(CCC)
  58. CCD=$(CCC)
  59. CCINT=$(CCC)
  60.