File: Makefile.am

package info (click to toggle)
libusbx 2%3A1.0.11-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,420 kB
  • sloc: ansic: 12,452; sh: 11,009; makefile: 195
file content (23 lines) | stat: -rw-r--r-- 526 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
INCLUDES = -I$(top_srcdir)/libusb
noinst_PROGRAMS = listdevs xusb

listdevs_SOURCES = listdevs.c
listdevs_LDADD = ../libusb/libusb-1.0.la

xusb_SOURCES = xusb.c
xusb_LDADD = ../libusb/libusb-1.0.la

if HAVE_SIGACTION
dpfp_SOURCES = dpfp.c
dpfp_LDADD = ../libusb/libusb-1.0.la
noinst_PROGRAMS += dpfp
endif

if THREADS_POSIX
if HAVE_SIGACTION
dpfp_threaded_SOURCES = dpfp_threaded.c
dpfp_threaded_CFLAGS = $(THREAD_CFLAGS) $(AM_CFLAGS)
dpfp_threaded_LDADD = ../libusb/libusb-1.0.la
noinst_PROGRAMS += dpfp_threaded
endif
endif