summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorPeter Eisentraut2000-06-06 22:01:15 +0000
committerPeter Eisentraut2000-06-06 22:01:15 +0000
commit5b9d0d9a5cc223e2d875b477a7416851f9f9b564 (patch)
treef8391a6ed2be780938b57786f93b6cda814cc231 /src/tools
parent42ad25fcd139253912dcee8628f866fbf023ae27 (diff)
Moved configure script from src/ to the top level directory. Moved
configuration helper things into config/ dir. Adjusted some relative paths in makefiles.
Diffstat (limited to 'src/tools')
-rwxr-xr-xsrc/tools/release_prep26
1 files changed, 12 insertions, 14 deletions
diff --git a/src/tools/release_prep b/src/tools/release_prep
index 58964f9a6f2..85d12b13151 100755
--- a/src/tools/release_prep
+++ b/src/tools/release_prep
@@ -25,53 +25,51 @@
# 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 yacc and lex files
-cd backend/parser
+cd src/backend/parser
rm -f gram.c parse.h scan.c
$MAKE gram.c parse.h scan.c
-cd ../..
+cd ../../..
# Generate bootstrap parser's yacc and lex files
-cd backend/bootstrap
+cd src/backend/bootstrap
rm -f bootstrap_tokens.h bootparse.c bootscanner.c
$MAKE bootstrap_tokens.h bootparse.c bootscanner.c
-cd ../..
+cd ../../..
# Generate configuration file scanner
-cd backend/utils/misc
+cd src/backend/utils/misc
rm -f guc-file.c lex.yy.c
$MAKE guc-file.c
-cd ../../..
+cd ../../../..
# Generate ecpg preprocessor's yacc and lex files
-cd interfaces/ecpg/preproc
+cd src/interfaces/ecpg/preproc
rm -f preproc.c preproc.h pgc.c
$MAKE preproc.c preproc.h pgc.c
-cd ../../..
+cd ../../../..
# Generate plpgsql's yacc and lex files
-cd pl/plpgsql/src
+cd src/pl/plpgsql/src
rm -f pl_scan.c pl.tab.h pl_gram.c
$MAKE pl_scan.c pl.tab.h pl_gram.c
-cd ../../..
+cd ../../../..
# Generate psql's help on SQL command from the SGML docs
-cd bin/psql
+cd src/bin/psql
rm -f sql_help.h
$MAKE sql_help.h
-cd ../..
+cd ../../..
# Clean up