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
d8b59b1d
Commit
d8b59b1d
authored
Feb 12, 1998
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up Makefiles - shouldn't require configure *.in Makefiles, as they should
pull their data/info from Makefile.global
parent
7783c2b9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
57 deletions
+0
-57
src/interfaces/ecpg/include/Makefile.in
src/interfaces/ecpg/include/Makefile.in
+0
-15
src/interfaces/ecpg/preproc/Makefile
src/interfaces/ecpg/preproc/Makefile
+0
-6
src/interfaces/ecpg/preproc/Makefile.in
src/interfaces/ecpg/preproc/Makefile.in
+0
-36
No files found.
src/interfaces/ecpg/include/Makefile.in
deleted
100644 → 0
View file @
7783c2b9
SRCDIR
=
../../..
include
$(SRCDIR)/Makefile.global
all clean
::
@
echo
Nothing to be
done
.
install
::
install
ecpglib.h
$(DESTDIR)$(HEADERDIR)
install
ecpgtype.h
$(DESTDIR)$(HEADERDIR)
install
sqlca.h
$(DESTDIR)$(HEADERDIR)
uninstall
::
rm
-f
$(DESTDIR)$(HEADERDIR)
/ecpglib.h
rm
-f
$(DESTDIR)$(HEADERDIR)
/ecpgtype.h
rm
-f
$(DESTDIR)$(HEADERDIR)
/sqlca.h
src/interfaces/ecpg/preproc/Makefile
View file @
d8b59b1d
...
...
@@ -6,12 +6,6 @@ MAJOR_VERSION=0
MINOR_VERSION
=
5
PATCHLEVEL
=
1
CC
=
gcc
LEX
=
flex
LEXLIB
=
-lfl
YACC
=
/usr/bin/bison
YFLAGS
=
-y
-d
CFLAGS
=
-I
../include
-O2
-g
-Wall
-DMAJOR_VERSION
=
$(MAJOR_VERSION)
-DMINOR_VERSION
=
$(MINOR_VERSION)
-DPATCHLEVEL
=
$(PATCHLEVEL)
all
::
ecpg
...
...
src/interfaces/ecpg/preproc/Makefile.in
deleted
100644 → 0
View file @
7783c2b9
SRCDIR
=
../../..
include
$(SRCDIR)/Makefile.global
MAJOR_VERSION
=
0
MINOR_VERSION
=
5
PATCHLEVEL
=
1
CC
=
@CC@
LEX
=
@LEX@
LEXLIB
=
@LEXLIB@
YACC
=
@YACC@
YFLAGS
=
@YFLAGS@
CFLAGS
=
-I
../include
-O2
-g
-Wall
-DMAJOR_VERSION
=
$(MAJOR_VERSION)
-DMINOR_VERSION
=
$(MINOR_VERSION)
-DPATCHLEVEL
=
$(PATCHLEVEL)
all
::
ecpg
clean
:
rm
-f
*
.o core a.out ecpg preproc.tab.h y.tab.c
*
~
install
:
all
install
-c
-m
755 ecpg
$(DESTDIR)$(BINDIR)
uninstall
:
rm
-f
$(DESTDIR)$(BINDIR)
/ecpg
# Rule that really do something.
ecpg
:
y.tab.o pgc.o type.o ecpg.o ../lib/typename.o
$(CC)
-g
-O2
-Wall
-o
ecpg y.tab.o pgc.o type.o ecpg.o ../lib/typename.o
$(LEXLIB)
y.tab.h y.tab.c
:
preproc.y
$(YACC)
$(YFLAGS)
$<
y.tab.o
:
y.tab.h ../include/ecpgtype.h
type.o
:
../include/ecpgtype.h
pgc.o
:
../include/ecpgtype.h
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