From: sojkam Date: Fri, 12 Sep 2008 14:33:39 +0000 (+0000) Subject: Modified Makefile.omk to support frsh_forb targets X-Git-Url: http://rtime.felk.cvut.cz/gitweb/frescor/frsh-include.git/commitdiff_plain/bb7e75c6914181406d67d25d07da2021280ad58c Modified Makefile.omk to support frsh_forb targets git-svn-id: http://www.frescor.org/private/svn/frescor/frsh/trunk/include@1324 35b4ef3e-fd22-0410-ab77-dab3279adceb --- diff --git a/Makefile.omk b/Makefile.omk index 9aa9efe..cab4696 100644 --- a/Makefile.omk +++ b/Makefile.omk @@ -1 +1,6 @@ -include_HEADERS = $(notdir $(wildcard $(SOURCES_DIR)/*.h)) +include_HEADERS := $(notdir $(wildcard $(SOURCES_DIR)/*.h)) + +ifeq ($(CONFIG_FRSH_FORB),y) +UNWANTED_HEADERS = frsh_opaque_types.h +include_HEADERS := $(filter-out $(UNWANTED_HEADERS),$(include_HEADERS)) +endif