1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
NULL =
AM_CFLAGS = $(NBTK_CFLAGS) $(GTK_CFLAGS) $(NBTK_MAINTAINER_CFLAGS)
LDADD = $(top_builddir)/nbtk/libnbtk-$(NBTK_API_VERSION).la \
$(top_builddir)/nbtk/libnbtk-gtk-$(NBTK_API_VERSION).la
INCLUDES = \
-I$(top_srcdir) \
-I$(top_builddir)
noinst_PROGRAMS = \
test-buttons \
test-combo-box \
test-draggable \
test-droppable \
test-label \
test-entry \
test-expander \
test-grid \
test-gtk \
test-styles \
test-table \
test-table-2 \
test-texture-frame \
test-tooltips \
test-views \
test-progress-bar \
test-scroll-bar \
test-scroll-grid \
test-scroll-view \
test-box-layout \
$(NULL)
test_buttons_SOURCES = test-buttons.c
test_combo_box_SOURCES = test-combo-box.c
test_styles_SOURCES = test-styles.c
test_table_SOURCES = test-table.c
test_table_2_SOURCES = test-table-2.c
test_tooltips_SOURCES = test-tooltips.c
test_texture_frame_SOURCES = test-texture-frame.c
test_label_SOURCES = test-label.c
test_entry_SOURCES = test-entry.c
test_expander_SOURCES = test-expander.c
test_grid_SOURCES = test-grid.c
test_gtk_SOURCES = test-gtk.c
test_views_SOURCES = test-views.c
test_progress_bar_SOURCES = test-progress-bar.c
test_scroll_bar_SOURCES = test-scroll-bar.c
test_scroll_grid_SOURCES = test-scroll-grid.c
test_scroll_view_SOURCES = test-scroll-view.c
test_draggable_SOURCES = test-draggable.c
test_droppable_SOURCES = test-droppable.c
test_box_layout_SOURCES = test-box-layout.c
EXTRA_DIST = \
style/border-image-dark.png \
style/border-image-light.png \
style/border-image.png \
style/cyan-button.png \
style/default.css \
style/green-button.png \
style/lime-button.png \
style/red-button.png \
style/redhand.png \
style/rounded-corner.png
-include $(top_srcdir)/git.mk
|