separate docs from resources as not everyone will want to install all the docs

This commit is contained in:
raburton 2007-06-16 09:34:35 +00:00
parent 8c79e1416b
commit 9319ea960c
1 changed files with 10 additions and 4 deletions

View File

@ -2,7 +2,8 @@
MAKEGTK = $(MAKE) -f makefile.gtk MAKEGTK = $(MAKE) -f makefile.gtk
KICAD_SUBDIRS = common 3d-viewer eeschema eeschema/plugins pcbnew cvpcb kicad gerbview KICAD_SUBDIRS = common 3d-viewer eeschema eeschema/plugins pcbnew cvpcb kicad gerbview
KICAD_SUBDIRS_BIN = 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: all:
@for dir in $(KICAD_SUBDIRS); do \ @for dir in $(KICAD_SUBDIRS); do \
@ -14,12 +15,17 @@ install-bin:
$(MAKEGTK) -C $$dir install; \ $(MAKEGTK) -C $$dir install; \
done done
install-rest: install-res:
@for dir in $(KICAD_SUBDIRS_REST); do \ @for dir in $(KICAD_SUBDIRS_RES); do \
$(MAKE) -C $$dir install; \ $(MAKE) -C $$dir install; \
done 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: clean:
@for dir in $(KICAD_SUBDIRS); do \ @for dir in $(KICAD_SUBDIRS); do \