forked from AuroraMiddleware/gtk
7391a078b3
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.
27 lines
333 B
Makefile
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
|