head     1.1;
branch   ;
access   ;
symbols  Version_2:1.1;
locks    ; strict;
comment  @# @;


1.1
date     90.07.30.17.51.15;  author kemnitz;  state Version_2;
branches ;
next     ;


desc
@Describes config.mk
@



1.1
log
@Initial revision
@
text
@
About  config.mk:

Here is a sample config.mk.  Your own config.mk may be slightly different.

# This is the root directory of the Postgres installation.

TREE=	/usr/postgres 

# This is the object directory of the Postgres installation.

OD=	/usr/postgres/obj.dec  

# This is the source directory of the Postgres installation.

SD=	/usr/postgres/src

# This is the port name.  This particular config.mk is appropriate for a 
# DECstation 3100.

PORTNAME=	dec

# This is the subdirectory of SD which is the location of the port-specific
# modules.

PORTDIR=	port/dec

# This flag should be unset if you do not want debugging.  Define -f68881 if
# you want to use floating point coprocessing.

GCFLAGS=	-g
LDFLAGS=	$(GCFLAGS)
CFLAGS=		$(GCFLAGS) \
		-I$(SD)/lib/H \
		-I$(SD)/lib/H/tmp \
		-I$(SD)/lib/H/obsolete \
		-I$(OD)/lib/H \
		-I$(SD)/$(PORTDIR) 
DIRS=		./dirs.mk
LIBS=		-ll -lm -lc
@
