Add odbc.c
Showing
1 changed file
with
7 additions
and
2 deletions
1 | ## This file is part of GNU Mailutils | 1 | ## This file is part of GNU Mailutils |
2 | 2 | ||
3 | ## Copyright (C) 2004 Free Software Foundation, Inc. | 3 | ## Copyright (C) 2004, 2005 Free Software Foundation, Inc. |
4 | ## | 4 | ## |
5 | ## GNU Mailutils is free software; you can redistribute it and/or | 5 | ## GNU Mailutils is free software; you can redistribute it and/or |
6 | ## modify it under the terms of the GNU General Public License as | 6 | ## modify it under the terms of the GNU General Public License as |
... | @@ -18,9 +18,10 @@ | ... | @@ -18,9 +18,10 @@ |
18 | ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 18 | ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 | 19 | ||
20 | noinst_LTLIBRARIES=@BUILD_SQL@ | 20 | noinst_LTLIBRARIES=@BUILD_SQL@ |
21 | EXTRA_LTLIBRARIES=libsql.la mysql.la postgres.la | 21 | EXTRA_LTLIBRARIES=libsql.la mysql.la postgres.la odbc.la |
22 | EXTRA_DIST=\ | 22 | EXTRA_DIST=\ |
23 | mysql.c\ | 23 | mysql.c\ |
24 | odbc.c\ | ||
24 | postgres.c | 25 | postgres.c |
25 | DISTCLEANFILES = modlist.h | 26 | DISTCLEANFILES = modlist.h |
26 | 27 | ||
... | @@ -42,3 +43,7 @@ mysql_la_LDFLAGS = $(MODFLAGS) | ... | @@ -42,3 +43,7 @@ mysql_la_LDFLAGS = $(MODFLAGS) |
42 | postgres_la_SOURCES = postgres.c | 43 | postgres_la_SOURCES = postgres.c |
43 | postgres_la_LIBADD = @POSTGRESLIBS@ | 44 | postgres_la_LIBADD = @POSTGRESLIBS@ |
44 | postgres_la_LDFLAGS = $(MODFLAGS) | 45 | postgres_la_LDFLAGS = $(MODFLAGS) |
46 | |||
47 | odbc_la_SOURCES = odbc.c | ||
48 | odbc_la_LIBADD = @ODBCLIBS@ | ||
49 | odbc_la_LDFLAGS = $(MODFLAGS) | ... | ... |
-
Please register or sign in to post a comment