summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2004-11-02 04:38:44 +0000
committerDavid Schleef <ds@schleef.org>2004-11-02 04:38:44 +0000
commit423817bbd7fb6b9497d2deda297dbf054e6a5264 (patch)
treee301a478923fedd884ad146dad796e7490c4b77f /examples
parenta539445a11f802155a9a106065c6011707c3c507 (diff)
downloadliboil-423817bbd7fb6b9497d2deda297dbf054e6a5264.tar.gz
* COPYING: add
* Makefile.am: Add COPYING, fix CLEANFILES * configure.ac: version bump * examples/jpeg/Makefile.am: fix glib dep * liboil/Makefile.am: add md5, fix glib dep * liboil/copy/Makefile.am: * liboil/liboilfuncs.h: update * liboil/liboilfunction.c: (oil_class_choose_by_name): add new function * liboil/liboilfunction.h: same * liboil/md5/Makefile.am: add md5 function class * liboil/md5/md5.c: (md5_c): * liboil/md5/md5.h: * liboil/md5/md5_i386.c: (md5_asm1), (md5_asm2): * testsuite/Makefile.am: add an md5 test * testsuite/md5.c: (test), (main):
Diffstat (limited to 'examples')
-rw-r--r--examples/jpeg/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/jpeg/Makefile.am b/examples/jpeg/Makefile.am
index b39e0c3..8c00324 100644
--- a/examples/jpeg/Makefile.am
+++ b/examples/jpeg/Makefile.am
@@ -2,8 +2,10 @@
if HAVE_GLIB
noinst_LTLIBRARIES = libjpeg.la
+noinst_PROGRAMS = jpeg_test jpeg_rgb_test
else
noinst_LTLIBRARIES =
+noinst_PROGRAMS =
endif
libjpeg_la_SOURCES = jpeg.c huffman.c jpeg_rgb_decoder.c
@@ -14,7 +16,6 @@ noinst_HEADERS = bits.h huffman.h jpeg.h jpeg_debug.h \
jpeg_internal.h jpeg_rgb_decoder.h jpeg_rgb_internal.h
-noinst_PROGRAMS = jpeg_test jpeg_rgb_test
jpeg_test_SOURCES = test.c
jpeg_test_CFLAGS = $(GLIB_CFLAGS)