diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -83,6 +83,13 @@ TMPDIR ?= /tmp export CFLAGS = $(call PKGCFG,cflags) export CXXFLAGS = $(call PKGCFG,cxxflags) +ifeq ($(CFLAGS),) +$(error CFLAGS not set) +endif +ifeq ($(CXXFLAGS),) +$(error CXXFLAGS not set) +endif + ### The version number of VDR's plugin API: APIVERSION = $(call PKGCFG,apiversion) |