libftdi: (tomj) applied status byte filtering patch for large readbuffers
[libftdi] / ftdi / Makefile.am
CommitLineData
a3da1d95
GE
1####### kdevelop will overwrite this part!!! (begin)##########
2lib_LTLIBRARIES = libftdi.la
3
4
5## INCLUDES were found outside kdevelop specific part
6
7
8LDFLAGS =
9
10libftdi_la_METASOURCES = AUTO
11
12libftdi_la_SOURCES = ftdi.c
13
14
15EXTRA_DIST = ftdi.c ftdi.h
16
17install-data-local:
18 $(mkinstalldirs) $(DESTDIR)$(prefix)/include/
19 $(INSTALL_DATA) $(srcdir)/ftdi.h $(DESTDIR)$(prefix)/include/ftdi.h
20
21uninstall-local:
22 -rm -f $(DESTDIR)$(prefix)/include/ftdi.h
23
24####### kdevelop will overwrite this part!!! (end)############
25# set the include path found by configure
26INCLUDES= $(all_includes)
27
28# Note: If you specify a:b:c as the version in the next line,
29# the library that is made has version (a-c).c.b. In this
30# example, the version is 2.1.2. (3:2:1)
6d9aa99f 31libftdi_la_LDFLAGS = -version-info 3:0:3 $(all_libraries)
a3da1d95 32