diff options
author | Jorg Schuler <jcsjcs@users.sourceforge.net> | 2005-10-09 16:27:46 +0000 |
---|---|---|
committer | Jorg Schuler <jcsjcs@users.sourceforge.net> | 2005-10-09 16:27:46 +0000 |
commit | 5b02248eb39cb1cdd1ca6f7daf0ce34585c4225c (patch) | |
tree | 380208d30975c2562189c0f518c48f1db55b3584 /tests/Makefile.am | |
parent | 1e6147b63567fd2c0f424dda4a05323b21991f03 (diff) | |
download | libgpod-5b02248eb39cb1cdd1ca6f7daf0ce34585c4225c.tar.gz libgpod-5b02248eb39cb1cdd1ca6f7daf0ce34585c4225c.tar.xz libgpod-5b02248eb39cb1cdd1ca6f7daf0ce34585c4225c.zip |
* bindings/python/gpod.i: applied Kelvin Lawson's patch to query
integers.
* src/ipod-device.[ch],hal-common.[ch],Makefile.am: code ported
from libipoddevice to retrieve information about the iPod
without libhal dependence.
* tests/test-ipod-device.c: small script to show how to to query
the iPod for information.
* tests/Makefile.am: initialize <LIBS> with better default
* configure.ac: add dependency for libgobject
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1113 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 16d9214..0b7bfe6 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -4,20 +4,20 @@ else TESTTHUMBS= endif -noinst_PROGRAMS=test-itdb $(TESTTHUMBS) +noinst_PROGRAMS=test-ipod-device test-itdb $(TESTTHUMBS) INCLUDES=$(LIBGPOD_CFLAGS) -I$(top_srcdir)/src -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" -LIBS=$(LIBGPOD_LIBS) +LIBS=$(LIBGPOD_LIBS) $(top_builddir)/src/libgpod.la test_itdb_SOURCES = itdb_main.c -test_itdb_LDADD = $(top_builddir)/src/libgpod.la +test_itdb_LDADD = if HAVE_GDKPIXBUF test_thumbnails_SOURCES = test-covers.c test_thumbnails_CFLAGS = $(GDKPIXBUF_CFLAGS) $(AM_CFLAGS) -test_thumbnails_LDADD = $(top_builddir)/src/libgpod.la $(GDKPIXBUF_LIBS) +test_thumbnails_LDADD = $(GDKPIXBUF_LIBS) test_write_thumbnails_SOURCES = test-write-covers.c test_write_thumbnails_CFLAGS = $(GDKPIXBUF_CFLAGS) $(AM_CFLAGS) -test_write_thumbnails_LDADD = $(top_builddir)/src/libgpod.la $(GDKPIXBUF_LIBS) +test_write_thumbnails_LDADD = $(GDKPIXBUF_LIBS) endif |