|
diff --git a/Makefile b/Makefile index 153bab8..dbbd150 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -80,60 +80,58 @@ GAMES = noncore/games/minesweep noncore/games/solitaire \ |
80 | noncore/games/kcheckers noncore/games/kpacman \ |
80 | noncore/games/kcheckers noncore/games/kpacman \ |
81 | noncore/games/kbill noncore/games/buzzword \ |
81 | noncore/games/kbill noncore/games/buzzword \ |
82 | noncore/games/bounce |
82 | noncore/games/bounce |
83 | |
83 | |
84 | NONAPPS = noncore/apps/opie-sheet noncore/apps/tableviewer \ |
84 | NONAPPS = noncore/apps/opie-sheet noncore/apps/tableviewer \ |
85 | noncore/apps/opie-reader noncore/apps/checkbook noncore/apps/oxygen \ |
85 | noncore/apps/opie-reader noncore/apps/checkbook noncore/apps/oxygen \ |
86 | noncore/apps/sysinfo noncore/net/opieirc noncore/apps/aqpkg \ |
86 | noncore/apps/sysinfo noncore/net/opieirc noncore/apps/aqpkg \ |
87 | noncore/apps/opie-console |
87 | noncore/apps/opie-console |
88 | |
88 | |
89 | NONNET = noncore/net/networksetup \ |
89 | NONNET = noncore/net/networksetup \ |
90 | noncore/net/opieftp \ |
90 | noncore/net/opieftp \ |
91 | noncore/mail |
91 | noncore/mail |
92 | |
92 | |
93 | NONMULT = noncore/multimedia/showimg noncore/graphics/drawpad \ |
93 | NONMULT = noncore/multimedia/showimg noncore/graphics/drawpad \ |
94 | noncore/graphics/qpdf noncore/apps/confedit |
94 | noncore/graphics/qpdf noncore/apps/confedit |
95 | |
95 | |
96 | |
96 | |
97 | NONCOMM = noncore/comm/keypebble |
97 | NONCOMM = noncore/comm/keypebble |
98 | |
98 | |
99 | PLUGINS = freetype |
99 | PLUGINS = freetype |
100 | |
100 | |
101 | APPS=$(LOCALAPPS) $(PIMAPPS) $(COREAPPS) \ |
101 | APPS=$(LOCALAPPS) $(PIMAPPS) $(COREAPPS) \ |
102 | $(COREMULTIMEDIA) $(CORESETTINGS) \ |
102 | $(COREMULTIMEDIA) $(CORESETTINGS) \ |
103 | $(NONCORESETTINGS) $(NONCORETOOLS) $(NONCORESTYLES) \ |
103 | $(NONCORESETTINGS) $(NONCORETOOLS) $(NONCORESTYLES) \ |
104 | $(NONCOREDECOS) $(NONAPPS) $(NONNET) $(NONMULT) \ |
104 | $(NONCOREDECOS) $(NONAPPS) $(NONNET) $(NONMULT) \ |
105 | $(NONCOMM) $(GAMES) $(TODAYPLUGINS) $(PLUGINS) |
105 | $(NONCOMM) $(GAMES) $(TODAYPLUGINS) $(PLUGINS) |
106 | |
106 | |
107 | |
107 | |
108 | |
108 | |
109 | NONTMAKEAPPS := ipaq/opiealarm |
109 | NONTMAKEAPPS := ipaq/opiealarm |
110 | |
110 | |
111 | DOCS = docs/src/opie-policy |
111 | DOCS = docs/src/opie-policy |
112 | single: mpegplayer/libmpeg3 |
| |
113 | |
112 | |
114 | dynamic: $(APPS) $(NONTMAKEAPPS) |
113 | dynamic: $(APPS) $(NONTMAKEAPPS) |
115 | |
114 | |
116 | docs: $(DOCS) |
115 | docs: $(DOCS) |
117 | |
116 | |
118 | $(COMPONENTS): $(LIBS) |
117 | $(COMPONENTS): $(LIBS) |
119 | |
118 | |
120 | $(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS) |
119 | $(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS) |
121 | |
120 | |
122 | $(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS) single: |
121 | $(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS): |
123 | $(MAKE) -C $@ -f Makefile |
122 | $(MAKE) -C $@ -f Makefile |
124 | |
123 | |
125 | showcomponents: |
124 | showcomponents: |
126 | @echo $(LIBS) $(APPS) $(COMPONENTS) single |
125 | @echo $(LIBS) $(APPS) $(COMPONENTS) |
127 | |
126 | |
128 | clean: |
127 | clean: |
129 | $(MAKE) -C single -f Makefile $@ |
| |
130 | for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
128 | for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
131 | |
129 | |
132 | lupdate: |
130 | lupdate: |
133 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
131 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
134 | |
132 | |
135 | lrelease: |
133 | lrelease: |
136 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
134 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
137 | |
135 | |
138 | |
136 | |
139 | .PHONY: default dynamic $(NONTMAKEAPPS) $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean |
137 | .PHONY: default dynamic $(NONTMAKEAPPS) $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) showcomponents clean |
|