-rw-r--r-- | Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -2,2 +2,4 @@ default: dynamic +all: default docs + LIBS=library @@ -34,2 +36,3 @@ APPS=$(LOCALAPPS) addressbook calculator clock datebook \ +DOCS = docs/src/opie-policy single: mpegplayer/libmpeg3 @@ -38,2 +41,4 @@ dynamic: $(APPS) +docs: $(DOCS) + $(COMPONENTS): $(LIBS) @@ -42,3 +47,3 @@ $(APPS): $(LIBS) $(COMPONENTS) -$(LIBS) $(COMPONENTS) $(APPS) single: +$(LIBS) $(COMPONENTS) $(APPS) $(DOCS) single: $(MAKE) -C $@ -f Makefile @@ -50,3 +55,3 @@ clean: $(MAKE) -C single -f Makefile $@ - for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done + for dir in $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done @@ -59,2 +64,2 @@ lrelease: -.PHONY: default dynamic $(LIBS) $(APPS) $(COMPONENTS) single showcomponents clean +.PHONY: default dynamic $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean |