nautilus/test/Makefile.am
Mathieu Lacage 13bd2e18b9 small fix: replace NULL with CORBA_OBJECT_NIL add new test.
2000-11-06  Mathieu Lacage  <mathieu@eazel.com>

    * libnautilus-extensions/nautilus-bonobo-extensions.c:
    (oaf_activation_callback): small fix: replace NULL with
    CORBA_OBJECT_NIL
    * test/Makefile.am: add new test.
    * test/test-nautilus-async-activation.{c|h}
2000-11-07 00:13:03 +00:00

61 lines
1.8 KiB
Makefile

NULL=
INCLUDES =\
-I$(top_srcdir) \
-I$(top_builddir) \
-I$(top_builddir)/libnautilus \
$(BONOBO_CFLAGS) \
$(OAF_CFLAGS) \
$(GCONF_CFLAGS) \
$(GNOMEUI_CFLAGS) \
$(VFS_CFLAGS) \
$(XML_CFLAGS) \
-DVERSION="\"$(VERSION)\"" \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-DNAUTILUS_DATADIR=\""$(datadir)/nautilus"\" \
$(NULL)
# -DBACKGROUNDS_DIR=\""$(top_srcdir)/data/backgrounds"\" \
LDADD =\
$(top_builddir)/libnautilus/libnautilus.la \
$(top_builddir)/libnautilus-extensions/libnautilus-extensions.la \
$(BONOBO_LIBS) \
$(OAF_LIBS) \
$(GCONF_LIBS) \
$(GNOMEUI_LIBS) \
$(VFS_LIBS) \
$(XML_LIBS) \
$(NULL)
noinst_PROGRAMS =\
test-nautilus-font \
test-nautilus-font-picker \
test-nautilus-image \
test-nautilus-label \
test-nautilus-wrapped-label \
test-nautilus-mime-actions \
test-nautilus-mime-actions-set \
test-nautilus-password-dialog \
test-nautilus-preferences \
test-nautilus-widgets \
test-nautilus-background \
test-nautilus-async-activation \
$(NULL)
test_nautilus_font_SOURCES = test-nautilus-font.c
test_nautilus_font_picker_SOURCES = test-nautilus-font-picker.c
test_nautilus_image_SOURCES = test-nautilus-image.c
test_nautilus_label_SOURCES = test-nautilus-label.c
test_nautilus_wrapped_label_SOURCES = test-nautilus-wrapped-label.c
test_nautilus_mime_actions_SOURCES = test-nautilus-mime-actions.c
test_nautilus_mime_actions_set_SOURCES = test-nautilus-mime-actions-set.c
test_nautilus_password_dialog_SOURCES = test-nautilus-password-dialog.c
test_nautilus_preferences_SOURCES = test-nautilus-preferences.c
test_nautilus_widgets_SOURCES = test-nautilus-widgets.c
test_nautilus_background_SOURCES = test-nautilus-background.c
test_nautilus_async_activation_SOURCES = test-nautilus-async-activation.c
EXTRA_DIST =\
font-test.sh \
$(NULL)