summaryrefslogtreecommitdiff
path: root/common.mak
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-03-08 20:17:47 +0000
committerMåns Rullgård <mans@mansr.com>2010-03-08 20:17:47 +0000
commitf89c14027a877187eb99767781bd5b12c7516a2a (patch)
tree4a07315448ee0f615df3d41bc593487abcc41973 /common.mak
parent4a89e0a6752e737d7e3ce7cb69f2068ef551dc4c (diff)
checkheaders: skip per-arch headers not meant for direct inclusion
Some of the per-arch headers are only meant to be used through the parent header of the same name. Testing these standalone does not make sense. Originally committed as revision 22341 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r--common.mak1
1 files changed, 1 insertions, 0 deletions
diff --git a/common.mak b/common.mak
index c03d0a5711..1df1b78542 100644
--- a/common.mak
+++ b/common.mak
@@ -92,6 +92,7 @@ HOSTPROGS := $(addprefix $(SUBDIR),$(addsuffix $(HOSTEXESUF),$(HOSTPROGS)))
DEP_LIBS := $(foreach NAME,$(FFLIBS),$(BUILD_ROOT_REL)/lib$(NAME)/$($(CONFIG_SHARED:yes=S)LIBNAME))
ALLHEADERS := $(subst $(SRC_DIR)/,$(SUBDIR),$(wildcard $(SRC_DIR)/*.h $(SRC_DIR)/$(ARCH)/*.h))
+SKIPHEADERS += $(addprefix $(ARCH)/,$(ARCH_HEADERS))
SKIPHEADERS := $(addprefix $(SUBDIR),$(SKIPHEADERS-) $(SKIPHEADERS))
checkheaders: $(filter-out $(SKIPHEADERS:.h=.ho),$(ALLHEADERS:.h=.ho))