From 9c8476b706962c9f42dc018dce4ee2b98f4b0d44 Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Wed, 16 Sep 2009 12:19:03 +0000 Subject: Compile out wiki output on request and move wiki stuff into a separate file This is useful for libflashrom (you don't need wiki output in a coreboot payload). Wiki output is now disabled by default. If you want to enable it, run make CONFIG_PRINT_WIKI=yes Corresponding to flashrom svn r725. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Stefan Reinauer --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1b50d87..6efed72 100644 --- a/Makefile +++ b/Makefile @@ -83,6 +83,9 @@ CONFIG_DUMMY ?= yes # Always enable Dr. Kaiser for now. CONFIG_DRKAISER ?= yes +# Always enable wiki printing for now. +CONFIG_PRINT_WIKI ?= no + ifeq ($(CONFIG_SERPROG), yes) FEATURE_CFLAGS += -D'SERPROG_SUPPORT=1' OBJS += serprog.o @@ -118,6 +121,11 @@ FEATURE_CFLAGS += -D'DRKAISER_SUPPORT=1' OBJS += drkaiser.o endif +ifeq ($(CONFIG_PRINT_WIKI), yes) +FEATURE_CFLAGS += -D'PRINT_WIKI_SUPPORT=1' +OBJS += print_wiki.o +endif + $(PROGRAM): $(OBJS) $(CC) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS) $(FEATURE_LIBS) -- cgit v1.1