blob: a21fd46968fd8e5e0023c8af4cbb9203e39f2b4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#-------------------------------------------------------------------------
#
# Makefile.inc--
# Makefile for the port module (for code specific to various UNIX
# platforms)
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.inc,v 1.1.1.1 1996/07/09 06:21:41 scrappy Exp $
#
#-------------------------------------------------------------------------
portdir= $(CURDIR)/port/$(PORTNAME)
VPATH:= $(VPATH):$(portdir)
SUBSRCS=
include $(portdir)/Makefile.inc
SRCS_PORT:= $(SUBSRCS)
|