Skip to content

Commit fca4519

Browse files
author
Thomas G. Lockhart
committed
Add conditional compilation of the ODBC directory.
Requires --with-odbc specified in the standalone configure.
1 parent effb32c commit fca4519

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/interfaces/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.15 1998/08/26 16:43:51 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.16 1998/10/07 06:41:40 thomas Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -35,6 +35,9 @@ endif
3535
ifeq ($(USE_PERL), true)
3636
$(MAKE) -C perl5 $@
3737
endif
38+
ifeq ($(USE_ODBC), true)
39+
$(MAKE) -C odbc $@
40+
endif
3841

3942
perl5/Makefile: perl5/Makefile.PL
4043
cd perl5 && perl Makefile.PL

0 commit comments

Comments
 (0)