gtk2/modules/printbackends/Makefile.am
Christoph Reiter 7391a078b3 meson: build print backends
This changes the configure option into two states:
auto: build all that can be build (default)
A list of backend names: build them and fail if we can't

"papi" is missing because it's not in Debian and I can't test it.
2019-04-11 16:45:36 +02:00

27 lines
333 B
Makefile

include $(top_srcdir)/Makefile.decl
SUBDIRS = file lpr
if HAVE_CLOUDPRINT
SUBDIRS += cloudprint
endif
if HAVE_CUPS
SUBDIRS += cups
endif
if TEST_PRINT_BACKEND
SUBDIRS += test
endif
if HAVE_PAPI
SUBDIRS += papi
endif
DIST_SUBDIRS = cloudprint cups file lpr test papi
EXTRA_DIST += \
meson.build
-include $(top_srcdir)/git.mk