From 9319ea960c2fa6a74982897267e787405a278578 Mon Sep 17 00:00:00 2001 From: raburton Date: Sat, 16 Jun 2007 09:34:35 +0000 Subject: [PATCH] separate docs from resources as not everyone will want to install all the docs --- makefile.gtk | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/makefile.gtk b/makefile.gtk index 15865b34b3..2cf3ba5f6f 100644 --- a/makefile.gtk +++ b/makefile.gtk @@ -2,7 +2,8 @@ MAKEGTK = $(MAKE) -f makefile.gtk KICAD_SUBDIRS = common 3d-viewer eeschema eeschema/plugins pcbnew cvpcb kicad gerbview KICAD_SUBDIRS_BIN = eeschema eeschema/plugins pcbnew cvpcb kicad gerbview -KICAD_SUBDIRS_REST = help internat modules template library +KICAD_SUBDIRS_RES = internat modules template library +KICAD_SUBDIRS_HELP = help all: @for dir in $(KICAD_SUBDIRS); do \ @@ -14,12 +15,17 @@ install-bin: $(MAKEGTK) -C $$dir install; \ done -install-rest: - @for dir in $(KICAD_SUBDIRS_REST); do \ +install-res: + @for dir in $(KICAD_SUBDIRS_RES); do \ $(MAKE) -C $$dir install; \ done -install: install-bin install-rest +install-help: + @for dir in $(KICAD_SUBDIRS_HELP); do \ + $(MAKE) -C $$dir install; \ + done + +install: install-bin install-res install-help clean: @for dir in $(KICAD_SUBDIRS); do \