blob: dd25bbcbf85393c754e95b7377d3b021f43b59ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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)
|