2001-01-17 Jeffrey Stedfast <fejj@ximian.com> * Makefile.am: Added e-messagebox to the build. * e-messagebox.[c,h]: Added a new messagebox window that contains a checkbox for "Don't show me this again." svn path=/trunk/; revision=7566
57 lines
1.1 KiB
Makefile
57 lines
1.1 KiB
Makefile
# FIXME we use the EClippedLabel widget from EShortcutBar. Probably
|
|
# it should be moved somewhere else.
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/widgets/shortcut-bar \
|
|
$(EXTRA_GNOME_CFLAGS) \
|
|
-DG_LOG_DOMAIN=__FILE__
|
|
|
|
noinst_LIBRARIES = \
|
|
libemiscwidgets.a
|
|
|
|
libemiscwidgets_a_SOURCES = \
|
|
e-calendar.c \
|
|
e-calendar.h \
|
|
e-calendar-item.c \
|
|
e-calendar-item.h \
|
|
e-clipped-label.c \
|
|
e-clipped-label.h \
|
|
e-dateedit.c \
|
|
e-dateedit.h \
|
|
e-messagebox.c \
|
|
e-messagebox.h \
|
|
e-search-bar.c \
|
|
e-search-bar.h \
|
|
e-title-bar.c \
|
|
e-title-bar.h
|
|
|
|
noinst_PROGRAMS = \
|
|
test-title-bar \
|
|
test-calendar \
|
|
test-dateedit
|
|
|
|
test_title_bar_SOURCES = \
|
|
test-title-bar.c
|
|
|
|
test_title_bar_LDADD = \
|
|
./libemiscwidgets.a \
|
|
$(EXTRA_GNOME_LIBS)
|
|
|
|
test_calendar_SOURCES = \
|
|
test-calendar.c
|
|
|
|
test_calendar_LDADD = \
|
|
./libemiscwidgets.a \
|
|
../../e-util/libeutil.la \
|
|
$(EXTRA_GNOME_LIBS)
|
|
|
|
test_dateedit_SOURCES = \
|
|
test-dateedit.c
|
|
|
|
test_dateedit_LDADD = \
|
|
./libemiscwidgets.a \
|
|
../../e-util/libeutil.la \
|
|
$(EXTRA_GNOME_LIBS)
|
|
|