head	1.2;
access;
symbols
	RELEASE_8_3_0:1.2
	RELEASE_9_0_0:1.2
	RELEASE_7_4_0:1.2
	RELEASE_8_2_0:1.2
	RELEASE_6_EOL:1.2
	RELEASE_8_1_0:1.2
	RELEASE_7_3_0:1.2
	RELEASE_8_0_0:1.2
	RELEASE_7_2_0:1.2
	RELEASE_7_1_0:1.2
	RELEASE_6_4_0:1.2
	RELEASE_5_EOL:1.2
	RELEASE_7_0_0:1.2
	RELEASE_6_3_0:1.2
	PRE_XORG_7:1.2
	RELEASE_4_EOL:1.2
	RELEASE_6_2_0:1.2
	RELEASE_6_1_0:1.2
	RELEASE_5_5_0:1.2
	RELEASE_6_0_0:1.2
	RELEASE_5_4_0:1.2
	RELEASE_4_11_0:1.2
	RELEASE_5_3_0:1.2
	RELEASE_4_10_0:1.2
	RELEASE_5_2_1:1.1
	RELEASE_5_2_0:1.1
	RELEASE_4_9_0:1.1
	RELEASE_5_1_0:1.1
	RELEASE_4_8_0:1.1
	RELEASE_5_0_0:1.1
	RELEASE_4_7_0:1.1
	RELEASE_4_6_2:1.1
	RELEASE_4_6_1:1.1
	RELEASE_4_6_0:1.1
	RELEASE_5_0_DP1:1.1
	RELEASE_4_5_0:1.1
	RELEASE_4_4_0:1.1
	RELEASE_4_3_0:1.1
	RELEASE_4_2_0:1.1
	RELEASE_4_1_1:1.1
	RELEASE_4_1_0:1.1
	RELEASE_3_5_0:1.1
	RELEASE_4_0_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2004.04.13.00.17.26;	author jmz;	state Exp;
branches;
next	1.1;

1.1
date	99.12.22.21.38.13;	author jmz;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Install the source instead of the cat-file in ${PREFIX}/man/man1

PR:		65456
@
text
@--- src/Makefile.orig	Wed Dec  8 06:36:48 1993
+++ src/Makefile	Tue Apr 13 02:12:49 2004
@@@@ -24,8 +24,8 @@@@
 BINDIR = ..
 LIBDIR = ../home
 MANDIR = ../home
-MANFILE = p2c.cat          # human-readable manual (for cat.1)
-#MANFILE = p2c.man.inst    # uncompressed nroff source (for man.1)
+#MANFILE = p2c.cat          # human-readable manual (for cat.1)
+MANFILE = p2c.man.inst    # uncompressed nroff source (for man.1)
 #MANFILE = p2c.man.Z       # compressed nroff source (for man.1.Z)
 
 # Directories (public version)
@@@@ -37,8 +37,8 @@@@
 #MANFILE = p2c.man.inst
 
 # Compiler options
-CC = cc                    # you may wish to use gcc here instead
-OPT = # -O		   # uncomment this for optimization
+CC ?= cc                    # you may wish to use gcc here instead
+OPT = $(CFLAGS)		   # uncomment this for optimization
 DEB = # -g		   # uncomment this for debugging
 DEFS =			   # place other -D types of things here
 CFLAGS = $(OPT) $(DEB) $(DEFS)
@


1.1
log
@Obey  the CFLAGS settings.
fix time_t declarations.

Submitted by:	Pedro F. Giffuni <pfgiffun@@bachue.usc.unal.edu.co>
@
text
@d1 24
a24 22
*** src/Makefile.orig	Wed Dec 15 14:55:32 1999
--- src/Makefile	Wed Dec 15 14:56:48 1999
***************
*** 37,44 ****
  #MANFILE = p2c.man.inst
  
  # Compiler options
! CC = cc                    # you may wish to use gcc here instead
! OPT = # -O		   # uncomment this for optimization
  DEB = # -g		   # uncomment this for debugging
  DEFS =			   # place other -D types of things here
  CFLAGS = $(OPT) $(DEB) $(DEFS)
--- 37,44 ----
  #MANFILE = p2c.man.inst
  
  # Compiler options
! CC ?= cc                    # you may wish to use gcc here instead
! OPT = $(CFLAGS)		   # uncomment this for optimization
  DEB = # -g		   # uncomment this for debugging
  DEFS =			   # place other -D types of things here
  CFLAGS = $(OPT) $(DEB) $(DEFS)

@

