From 5ed10dfc4cb460190959667a93846c6c091b4b0b Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Thu, 8 Jan 2009 16:53:43 -0600 Subject: Adding in build support for the indicate and crash test. Will make future ones easier. --- configure.ac | 1 + libindicate/Makefile.am | 3 +++ libindicate/tests/Makefile.am | 14 ++++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 libindicate/tests/Makefile.am diff --git a/configure.ac b/configure.ac index f50f788..eeca255 100644 --- a/configure.ac +++ b/configure.ac @@ -69,6 +69,7 @@ AC_OUTPUT([ Makefile src/Makefile libindicate/Makefile +libindicate/tests/Makefile data/Makefile data/icons/Makefile data/icons/16x16/Makefile diff --git a/libindicate/Makefile.am b/libindicate/Makefile.am index 83e2836..86ef22a 100644 --- a/libindicate/Makefile.am +++ b/libindicate/Makefile.am @@ -1,4 +1,7 @@ +SUBDIRS = \ + tests + INCLUDES= \ -DG_LOG_DOMAIN=\"libindicate\" diff --git a/libindicate/tests/Makefile.am b/libindicate/tests/Makefile.am new file mode 100644 index 0000000..1fe4856 --- /dev/null +++ b/libindicate/tests/Makefile.am @@ -0,0 +1,14 @@ + +noinst_PROGRAMS = \ + indicate-and-crash + +indicate_and_crash_SOURCES = \ + indicate-and-crash.c + +indicate_and_crash_CFLAGS = \ + -I $(srcdir)/../.. \ + $(LIBINDICATE_CFLAGS) + +indicate_and_crash_LDADD = \ + ../libindicate.la \ + $(LIBINDICATE_LIBS) -- cgit v1.2.3