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
bb7c0da1
Commit
bb7c0da1
authored
Mar 20, 1999
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up build procedure: do not keep raw lex/yacc files around,
only the edited ones.
parent
e8f9b6ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
src/pl/plpgsql/src/Makefile.in
src/pl/plpgsql/src/Makefile.in
+11
-11
No files found.
src/pl/plpgsql/src/Makefile.in
View file @
bb7c0da1
...
...
@@ -4,7 +4,7 @@
# Makefile for the plpgsql shared object
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.1
4 1999/02/07 22:10:47
tgl Exp $
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.1
5 1999/03/20 18:00:38
tgl Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -60,18 +60,16 @@ pl_funcs.o: pl_funcs.c plpgsql.h pl.tab.h
pl_parse.o
:
pl_gram.c pl_scan.c plpgsql.h
$(CC)
$(CFLAGS)
-c
-o
$@
pl_gram.c
pl_gram.c
:
gram.c
sed
-e
's/yy/plpgsql_yy/g'
-e
's/YY/PLPGSQL_YY/g'
<gram.c
>
pl_gram.c
pl_gram.c pl.tab.h
:
gram.y
$(YACC)
$(YFLAGS)
$<
sed
-e
's/yy/plpgsql_yy/g'
-e
's/YY/PLPGSQL_YY/g'
<y.tab.c
>
pl_gram.c
sed
-e
's/yy/plpgsql_yy/g'
-e
's/YY/PLPGSQL_YY/g'
<y.tab.h
>
pl.tab.h
rm
-f
y.tab.c y.tab.h
pl_scan.c
:
scan.c
sed
-e
's/yy/plpgsql_yy/g'
-e
's/YY/PLPGSQL_YY/g'
<scan.c
>
pl_scan.c
gram.c
:
gram.y
scan.c
:
scan.l
pl.tab.h
:
pl_gram.c
pl_scan.c
:
scan.l
$(LEX)
$<
sed
-e
's/yy/plpgsql_yy/g'
-e
's/YY/PLPGSQL_YY/g'
<lex.yy.c
>
pl_scan.c
rm
-f
lex.yy.c
.PHONY
:
install clean
...
...
@@ -79,6 +77,8 @@ pl.tab.h: pl_gram.c
clean
:
rm
-f
lib
$(NAME)
.a
$(shlib)
rm
-f
*
.o pl.tab.h pl_gram.c pl_scan.c
# And the garbage that might have been left behind by partial build:
rm
-f
y.tab.c
y.tab.h
lex.yy.c
ifeq
($(PORTNAME), win)
rm
-f
$(NAME).def
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