diff options
author | Pete Batard <pbatard@gmail.com> | 2010-01-14 15:44:47 +0000 |
---|---|---|
committer | Pete Batard <pbatard@gmail.com> | 2010-01-14 15:44:47 +0000 |
commit | 40e8e4185a1b81478c8fff040753aab4efb4bbf1 (patch) | |
tree | cd9bac0899774360bf7653a02cb9d43d26df9404 /examples | |
parent | e6ef1694db0c4e54d22c08e5824e979e3a71471b (diff) | |
download | libusb-40e8e4185a1b81478c8fff040753aab4efb4bbf1.tar.gz |
r74: fixes CR/LF conversions introduced with previous changes
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Makefile.am | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index d3444fc..fe6cae4 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,17 +1,17 @@ -INCLUDES = -I$(top_srcdir)
-noinst_PROGRAMS = xusb lsusb
-#dpfp dpfp_threaded
-
-lsusb_SOURCES = lsusb.c
-lsusb_LDADD = ../libusb/libusb-1.0.la -lusb-1.0
-
-xusb_SOURCES = xusb.c
-xusb_LDADD = ../libusb/libusb-1.0.la -lusb-1.0
-
-dpfp_SOURCES = dpfp.c
-dpfp_LDADD = ../libusb/libusb-1.0.la -lusb-1.0
-
-dpfp_threaded_SOURCES = dpfp_threaded.c
-dpfp_threaded_CFLAGS = $(AM_CFLAGS)
-dpfp_threaded_LDADD = ../libusb/libusb-1.0.la -lusb-1.0
-
+INCLUDES = -I$(top_srcdir) +noinst_PROGRAMS = xusb lsusb +#dpfp dpfp_threaded + +lsusb_SOURCES = lsusb.c +lsusb_LDADD = ../libusb/libusb-1.0.la -lusb-1.0 + +xusb_SOURCES = xusb.c +xusb_LDADD = ../libusb/libusb-1.0.la -lusb-1.0 + +dpfp_SOURCES = dpfp.c +dpfp_LDADD = ../libusb/libusb-1.0.la -lusb-1.0 + +dpfp_threaded_SOURCES = dpfp_threaded.c +dpfp_threaded_CFLAGS = $(AM_CFLAGS) +dpfp_threaded_LDADD = ../libusb/libusb-1.0.la -lusb-1.0 + |