Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
b78a3de9
Commit
b78a3de9
authored
Feb 05, 1997
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get in there...
parent
4001a8c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
0 deletions
+59
-0
src/backend/port/Makefile.in
src/backend/port/Makefile.in
+59
-0
No files found.
src/backend/port/Makefile.in
0 → 100644
View file @
b78a3de9
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for the port-specific subsystem of the backend
#
# You must invoke this make file with the PORTNAME variable set to the
# name of a port, i.e. the name of a subdirectory of the current directory.
# Example:
#
# make SUBSYS.o PORTNAME=linux
#
# We have two different modes of operation: 1) put stuff specific to Port X
# in subdirectory X and have that subdirectory's make file make it all, and
# 2) use conditional statements in the present make file to include what's
# necessary for a specific port in our own output. (1) came first, but (2)
# is superior for many things, like when the same thing needs to be done for
# multiple ports and you don't want to duplicate files in multiple
# subdirectories. Much of the stuff done via Method 1 today should probably
# be converted to Method 2.
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.1 1997/02/05 21:27:04 scrappy Exp $
#
#-------------------------------------------------------------------------
include
../../Makefile.global
ifndef
PORTNAME
.DEFAULT all
:
@
echo
"Error: Must invoke make with PORTNAME= argument."
@
false
else
OBJS
=
$(PORTNAME)
/SUBSYS.o @INET_ATON@
all
:
submake SUBSYS.o
SUBSYS.o
:
$(OBJS)
$(LD)
-r
-o
SUBSYS.o
$(OBJS)
.PHONY
:
submake clean dep
submake
:
$(MAKE)
-C
$(PORTNAME)
SUBSYS.o
clean
:
rm
-f
$(OBJS)
$(MAKE)
-C
$(PORTNAME)
clean
depend dep
:
$(CC)
-MM
$(INCLUDE_OPT)
*
.c
>
depend
$(MAKE)
-C
$(PORTNAME)
$@
ifeq
(depend,$(wildcard depend))
include
depend
endif
endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment