aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile
index db46f2e..7b54373 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -195,7 +195,15 @@ PKGS_FBPDF := libdrm poppler-glib gbm epoxy cairo-gl
fbpdf : CFLAGS += $(shell $(PKG_CONFIG) --cflags $(PKGS_FBPDF))
fbpdf : LDLIBS += $(shell $(PKG_CONFIG) --libs $(PKGS_FBPDF))
+ifeq ($(shell $(PKG_CONFIG) $(PKGS_FBPDF) && echo ok),ok)
fbpdf: $(OBJS_FBPDF)
+else
+.PHONY: fbpdf
+fbpdf:
+ @echo "Build dependencies missing for fbpdf"
+ @echo "needed: $(PKGS_FBPDF)"
+ false
+endif
########################################################################