diff options
Diffstat (limited to 'unittest/examples/Makefile.am')
-rw-r--r-- | unittest/examples/Makefile.am | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/unittest/examples/Makefile.am b/unittest/examples/Makefile.am new file mode 100644 index 00000000000..1d0416f88c8 --- /dev/null +++ b/unittest/examples/Makefile.am @@ -0,0 +1,20 @@ +AM_CPPFLAGS = -I$(srcdir) -I$(top_builddir)/include +AM_CPPFLAGS += -I$(top_builddir)/mytap + +AM_LDFLAGS = -L$(top_builddir)/mytap + +AM_CFLAGS = -Wall -ansi -pedantic + +LDADD = -lmytap + +noinst_PROGRAMS = simple.t skip.t todo.t skip_all.t no_plan.t + +simple_t_SOURCES = simple.t.c + +skip_t_SOURCES = skip.t.c + +todo_t_SOURCES = todo.t.c + +skip_all_t_SOURCES = skip_all.t.c + +no_plan_t_SOURCES = no_plan.t.c |