|
diff --git a/Makefile b/Makefile index b178d3f..53a97d7 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -46,33 +46,32 @@ APPS=$(LOCALAPPS) core/addressbook calculator clock datebook \ |
46 | |
46 | |
47 | NONTMAKEAPPS := noncore/nethack |
47 | NONTMAKEAPPS := noncore/nethack |
48 | |
48 | |
49 | DOCS = docs/src/opie-policy |
49 | DOCS = docs/src/opie-policy |
50 | single: mpegplayer/libmpeg3 |
50 | single: mpegplayer/libmpeg3 |
51 | |
51 | |
52 | dynamic: $(APPS) $(NONTMAKEAPPS) |
52 | dynamic: $(APPS) $(NONTMAKEAPPS) |
53 | |
53 | |
54 | docs: $(DOCS) |
54 | docs: $(DOCS) |
55 | |
55 | |
56 | $(COMPONENTS): $(LIBS) |
56 | $(COMPONENTS): $(LIBS) |
57 | |
57 | |
58 | $(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS) |
58 | $(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS) |
59 | |
59 | |
60 | $(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS) single: |
60 | $(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS) single: |
61 | $(MAKE) -C $@ -f Makefile |
61 | $(MAKE) -C $@ -f Makefile |
62 | |
62 | |
63 | showcomponents: |
63 | showcomponents: |
64 | @echo $(LIBS) $(APPS) $(COMPONENTS) single |
64 | @echo $(LIBS) $(APPS) $(COMPONENTS) single |
65 | |
65 | |
66 | clean: |
66 | clean: |
67 | $(MAKE) -C single -f Makefile $@ |
67 | $(MAKE) -C single -f Makefile $@ |
68 | for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
68 | for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
69 | |
69 | |
70 | lupdate: |
70 | lupdate: |
71 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
71 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
72 | |
72 | |
73 | lrelease: |
73 | lrelease: |
74 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
74 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
75 | |
75 | |
76 | |
76 | |
77 | .PHONY: default dynamic $(NONTMAKEAPPS) $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean |
77 | .PHONY: default dynamic $(NONTMAKEAPPS) $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean |
78 | AKEAPPS) $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean
|
| |
|