diff options
author | Johns <johns98@gmx.net> | 2013-02-11 14:41:19 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2013-02-11 14:41:19 +0100 |
commit | 8faff0fd1e559ce067bfc4e95df81d943310f8aa (patch) | |
tree | 569cd979bdf86ab6e45b15e36fa5969e17088647 /Makefile | |
parent | d31ff55b12daf71d49b4cab06272b1d3e75f4272 (diff) | |
download | vdr-plugin-softhddevice-8faff0fd1e559ce067bfc4e95df81d943310f8aa.tar.gz vdr-plugin-softhddevice-8faff0fd1e559ce067bfc4e95df81d943310f8aa.tar.bz2 |
Try to detect wrong Makefile use.
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) |