File: Makefile.am

package info (click to toggle)
freetds 1.3.17%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 9,104 kB
  • sloc: ansic: 98,429; sh: 5,044; xml: 4,472; sql: 1,488; makefile: 1,077; perl: 509; php: 22
file content (25 lines) | stat: -rw-r--r-- 623 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# version $Id: Makefile.am,v 1.3 2006-09-13 11:56:37 freddy77 Exp $

noinst_SCRIPTS	=	unixodbc.freetds.driver.template

EXTRA_DIST	=	README debug.c dyntest.c odbc.ini odbctest.php \
			odbctest.pl test.php test.pl \
			unixodbc.freetds.driver.template.in \
			unixodbc.install.sh \
			unixodbc.jdbc.datasource.template

SUFFIXES	=	.in

edit = sed \
	-e 's,@datadir\@,$(pkgdatadir),g' \
	-e 's,@libdir\@,$(libdir),g' \
	-e 's,@prefix\@,$(prefix),g'

unixodbc.freetds.driver.template: unixodbc.freetds.driver.template.in

CLEANFILES = unixodbc.freetds.driver.template

.in:
	rm -f $@ $@.tmp
	$(edit) $< >$@.tmp
	mv $@.tmp $@