|
diff --git a/Makefile b/Makefile index a42c772..4278d1f 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -86,49 +86,49 @@ NONAPPS = noncore/apps/opie-sheet noncore/apps/tableviewer \ |
86 | noncore/apps/opie-reader noncore/apps/checkbook noncore/apps/oxygen \ |
86 | noncore/apps/opie-reader noncore/apps/checkbook noncore/apps/oxygen \ |
87 | noncore/apps/sysinfo noncore/net/opieirc noncore/apps/aqpkg \ |
87 | noncore/apps/sysinfo noncore/net/opieirc noncore/apps/aqpkg \ |
88 | noncore/apps/opie-console noncore/apps/opie-write |
88 | noncore/apps/opie-console noncore/apps/opie-write |
89 | |
89 | |
90 | NONNET = noncore/net/networksetup \ |
90 | NONNET = noncore/net/networksetup \ |
91 | noncore/net/ftplib noncore/net/opieftp \ |
91 | noncore/net/ftplib noncore/net/opieftp \ |
92 | noncore/mail |
92 | noncore/mail |
93 | |
93 | |
94 | NONMULT = noncore/multimedia/showimg noncore/graphics/drawpad \ |
94 | NONMULT = noncore/multimedia/showimg noncore/graphics/drawpad \ |
95 | noncore/graphics/qpdf noncore/apps/confedit |
95 | noncore/graphics/qpdf noncore/apps/confedit |
96 | |
96 | |
97 | |
97 | |
98 | NONCOMM = noncore/comm/keypebble |
98 | NONCOMM = noncore/comm/keypebble |
99 | |
99 | |
100 | PLUGINS = freetype |
100 | PLUGINS = freetype |
101 | |
101 | |
102 | APPS=$(LOCALAPPS) $(PIMAPPS) $(COREAPPS) \ |
102 | APPS=$(LOCALAPPS) $(PIMAPPS) $(COREAPPS) \ |
103 | $(COREMULTIMEDIA) $(CORESETTINGS) \ |
103 | $(COREMULTIMEDIA) $(CORESETTINGS) \ |
104 | $(NONCORESETTINGS) $(NONCORETOOLS) $(NONCORESTYLES) \ |
104 | $(NONCORESETTINGS) $(NONCORETOOLS) $(NONCORESTYLES) \ |
105 | $(NONCOREDECOS) $(NONAPPS) $(NONNET) $(NONMULT) \ |
105 | $(NONCOREDECOS) $(NONAPPS) $(NONNET) $(NONMULT) \ |
106 | $(NONCOMM) $(GAMES) $(TODAYPLUGINS) $(PLUGINS) |
106 | $(NONCOMM) $(GAMES) $(TODAYPLUGINS) $(PLUGINS) |
107 | |
107 | |
108 | |
108 | |
109 | |
109 | |
110 | NONTMAKEAPPS := ipaq/opiealarm |
110 | NONTMAKEAPPS := root/opiealarm |
111 | |
111 | |
112 | DOCS = docs/src/opie-policy |
112 | DOCS = docs/src/opie-policy |
113 | |
113 | |
114 | dynamic: $(APPS) $(NONTMAKEAPPS) |
114 | dynamic: $(APPS) $(NONTMAKEAPPS) |
115 | |
115 | |
116 | docs: $(DOCS) |
116 | docs: $(DOCS) |
117 | |
117 | |
118 | $(COMPONENTS): $(LIBS) |
118 | $(COMPONENTS): $(LIBS) |
119 | |
119 | |
120 | $(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS) |
120 | $(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS) |
121 | |
121 | |
122 | $(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS): |
122 | $(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS): |
123 | $(MAKE) -C $@ -f Makefile |
123 | $(MAKE) -C $@ -f Makefile |
124 | |
124 | |
125 | showcomponents: |
125 | showcomponents: |
126 | @echo $(LIBS) $(APPS) $(COMPONENTS) |
126 | @echo $(LIBS) $(APPS) $(COMPONENTS) |
127 | |
127 | |
128 | clean: |
128 | clean: |
129 | for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
129 | for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
130 | |
130 | |
131 | lupdate: |
131 | lupdate: |
132 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
132 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
133 | |
133 | |
134 | lrelease: |
134 | lrelease: |
|