mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
4bef8eb8b6
2002-06-12 Damon Chaplin <damon@ximian.com> * test/Makefile.am (INCLUDES): * src/Makefile.am (INCLUDES): * components/tree/Makefile.am (INCLUDES): * components/throbber/Makefile.am (INCLUDES): * components/text/Makefile.am (INCLUDES): * components/notes/Makefile.am (INCLUDES): * components/news/Makefile.am (INCLUDES): * components/music/Makefile.am (INCLUDES): * components/history/Makefile.am (INCLUDES): * components/hardware/Makefile.am (INCLUDES): use $(prefix)/${DATADIRNAME}/locale rather than $(datadir)/locale so it works on Solaris. Fixes bug #83636.
33 lines
969 B
Makefile
33 lines
969 B
Makefile
NULL=
|
|
|
|
INCLUDES =\
|
|
-I$(top_srcdir) \
|
|
$(CORE_CFLAGS) \
|
|
-DVERSION="\"$(VERSION)\"" \
|
|
-DGNOMELOCALEDIR=\""$(prefix)/${DATADIRNAME}/locale"\" \
|
|
-DNAUTILUS_DATADIR=\""$(datadir)/nautilus"\" \
|
|
$(NULL)
|
|
|
|
LDADD =\
|
|
$(top_builddir)/libnautilus/libnautilus.la \
|
|
$(top_builddir)/libnautilus-private/libnautilus-private.la \
|
|
$(CORE_LIBS) \
|
|
$(NULL)
|
|
|
|
noinst_PROGRAMS =\
|
|
test-nautilus-mime-actions \
|
|
test-nautilus-mime-actions-set \
|
|
test-nautilus-preferences-change \
|
|
test-nautilus-preferences-display \
|
|
test-nautilus-wrap-table \
|
|
$(NULL)
|
|
|
|
test_nautilus_mime_actions_SOURCES = test-nautilus-mime-actions.c test.c
|
|
test_nautilus_mime_actions_set_SOURCES = test-nautilus-mime-actions-set.c test.c
|
|
test_nautilus_preferences_change_SOURCES = test-nautilus-preferences-change.c test.c
|
|
test_nautilus_preferences_display_SOURCES = test-nautilus-preferences-display.c test.c
|
|
test_nautilus_wrap_table_SOURCES = test-nautilus-wrap-table.c test.c
|
|
|
|
EXTRA_DIST = \
|
|
test.h \
|
|
$(NULL)
|