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
|
include $(top_srcdir)/Makefile.decl
NULL =
AM_CFLAGS = \
$(GLIB_CFLAGS) \
-I$(top_srcdir)/fsosystem \
-include $(CONFIG_HEADER)
$(NULL)
LDADD = \
$(top_builddir)/fsosystem/libfsosystem.la \
$(GLIB_LIBS) \
$(NULL)
AM_VALAFLAGS = \
--basedir $(top_srcdir) \
--vapidir $(top_srcdir)/fsosystem \
--pkg posix \
--pkg glib-2.0 \
--pkg gio-2.0 \
--pkg gee-0.8 \
--pkg fsosystem-2.0
$(NULL)
noinst_PROGRAMS = \
testpath \
testmodules \
testnetwork \
$(NULL)
TEST_PROGS += testpath
testpath_SOURCES = testpath.vala
testmodules_SOURCES = testmodules.vala
testnetwork_SOURCES = testnetwork.vala
CLEANFILES = \
$(TEST_PROGS) \
$(NULL)
MAINTAINERCLEANFILES = \
$(addsuffix .c,$(noinst_PROGRAMS)) \
testpath_vala.stamp \
$(NULL)
EXTRA_DIST += \
$(MAINTAINERCLEANFILES) \
$(NULL)
|