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
99796606
Commit
99796606
authored
Oct 27, 1998
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix missing dependency for Makefile inclusions.
Get rid of some stray tabs that might confuse Make.
parent
9f39b9a1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
11 deletions
+10
-11
src/bin/pgtclsh/Makefile
src/bin/pgtclsh/Makefile
+10
-11
No files found.
src/bin/pgtclsh/Makefile
View file @
99796606
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.2
3 1998/10/18 04:16:08 momjian
Exp $
# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.2
4 1998/10/27 21:51:54 tgl
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -19,7 +19,7 @@ include ../../Makefile.global
#
include
Makefile.tcldefs
ifeq
($(USE_TK), true)
include
Makefile.tkdefs
include
Makefile.tkdefs
endif
CFLAGS
+=
$(X_CFLAGS)
-I
$(SRCDIR)
/interfaces/libpgtcl
...
...
@@ -29,7 +29,6 @@ LDFLAGS+= $(KRBLIBS)
CFLAGS
+=
$(KRBFLAGS)
endif
# try to find libpgtcl.a in either directory
LIBPGTCL
=
-L
$(SRCDIR)
/interfaces/libpgtcl
-lpgtcl
LIBPQ
=
-L
$(LIBPQDIR)
-lpq
...
...
@@ -39,18 +38,12 @@ INSTPGMS = install_tcl
# Add TK targets if TK is available
ifeq
($(USE_TK), true)
PGMS
+=
pgtksh
INSTPGMS
+=
install_tk
PGMS
+=
pgtksh
INSTPGMS
+=
install_tk
endif
all
:
$(PGMS)
Makefile.tcldefs
:
/bin/sh mkMakefile.tcldefs.sh
Makefile.tkdefs
:
/bin/sh mkMakefile.tkdefs.sh
pgtclsh
:
pgtclAppInit.o
$(CC)
$(CFLAGS)
$(TCL_DEFS)
-o
$@
pgtclAppInit.o
\
$(LIBPGTCL)
$(LIBPQ)
$(TCL_LIB_SPEC)
$(TCL_LIBS)
$(LDFLAGS)
...
...
@@ -68,6 +61,12 @@ install_tcl: pgtclsh
install_tk
:
pgtksh
$(INSTALL)
$(INSTL_EXE_OPTS)
pgtksh
$(BINDIR)
/pgtksh
Makefile.tcldefs
:
mkMakefile.tcldefs.sh
/bin/sh mkMakefile.tcldefs.sh
Makefile.tkdefs
:
mkMakefile.tkdefs.sh
/bin/sh mkMakefile.tkdefs.sh
clean
:
rm
-f
*
.o Makefile.t
*
defs pgtclsh pgtksh
...
...
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