Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
c96add9a
Commit
c96add9a
authored
26 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Script for preparing derived files during tarball construction.
parent
0aa2aed5
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tools/release_prep
+58
-0
58 additions, 0 deletions
src/tools/release_prep
with
58 additions
and
0 deletions
src/tools/release_prep
0 → 100755
+
58
−
0
View file @
c96add9a
#!/bin/sh
#
# release_prep: prepare the Postgres source tree for distribution
#
# This script should be run after checking out a fileset from the Postgres
# CVS repository, and just before creating a tarfile from the checked-out
# fileset. It does cleanup tasks to ensure that we have a good tarball.
#
# Run the script from the toplevel Postgres directory, ie, do
# cd pgsql
# src/tools/release_prep
# (Right now, the cleanup tasks are all in the src subdirectory, but we
# might want to add housekeeping in doc too?)
#
# The script's tasks are:
# 1. Run configure to prepare usable Makefiles on the local system.
# 2. Generate distribution copies of some derived files such as gram.c.
# (We do this so that recipients of the distribution don't have to have
# tools that can create these files.)
# Note we force these files to be recreated, to ensure they will have
# newer timestamps than their master files.
# 3. "make distclean" to get rid of the configure outputs, as well as any
# other cruft that might be laying about.
# Select make to use --- default gmake, can be overridden by env var
MAKE
=
${
MAKE
:-
gmake
}
cd
src
# Configure ... should we run autoconf here???
./configure
# Generate parser's gram and lex files.
cd
backend/parser
rm
-f
gram.c parse.h scan.c
$MAKE
gram.c parse.h scan.c
cd
../..
# Generate ecpg preprocessor's gram and lex files.
cd
interfaces/ecpg/preproc
rm
-f
preproc.c preproc.h pgc.c
$MAKE
preproc.c preproc.h pgc.c
cd
../../..
# Clean up
$MAKE
distclean
exit
0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment