diff options
author | Perberos <[email protected]> | 2011-12-01 22:24:23 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 22:24:23 -0300 |
commit | 0e004c696b0e68b2cff37a4c3315b022a35eaf43 (patch) | |
tree | 43261e815529cb9518ed7be37af13b846af8b26b /test/Makefile.am | |
download | caja-0e004c696b0e68b2cff37a4c3315b022a35eaf43.tar.bz2 caja-0e004c696b0e68b2cff37a4c3315b022a35eaf43.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/test/Makefile.am b/test/Makefile.am new file mode 100644 index 00000000..9e3d2099 --- /dev/null +++ b/test/Makefile.am @@ -0,0 +1,46 @@ +NULL= + +INCLUDES =\ + -I$(top_srcdir) \ + $(CORE_CFLAGS) \ + $(WARNING_CFLAGS) \ + -DVERSION="\"$(VERSION)\"" \ + -DCAJA_DATADIR=\""$(datadir)/caja"\" \ + -DMATELOCALEDIR=\""$(prefix)/${DATADIRNAME}/locale"\" \ + $(NULL) + +LDADD =\ + $(top_builddir)/libcaja-private/libcaja-private.la \ + $(CORE_LIBS) \ + $(NULL) + +noinst_PROGRAMS =\ + test-caja-wrap-table \ + test-caja-search-engine \ + test-caja-directory-async \ + test-caja-copy \ + test-eel-background \ + test-eel-editable-label \ + test-eel-image-scrolled \ + test-eel-image-table \ + test-eel-labeled-image \ + test-eel-pixbuf-scale \ + $(NULL) + +test_caja_copy_SOURCES = test-copy.c test.c + +test_caja_wrap_table_SOURCES = test-caja-wrap-table.c test.c + +test_caja_search_engine_SOURCES = test-caja-search-engine.c + +test_caja_directory_async_SOURCES = test-caja-directory-async.c + +test_eel_background_SOURCES = test-eel-background.c +test_eel_image_scrolled_SOURCES = test-eel-image-scrolled.c test.c test.h +test_eel_image_table_SOURCES = test-eel-image-table.c test.c +test_eel_labeled_image_SOURCES = test-eel-labeled-image.c test.c test.h +test_eel_pixbuf_scale_SOURCES = test-eel-pixbuf-scale.c test.c test.h + +EXTRA_DIST = \ + test.h \ + $(NULL) |