summaryrefslogtreecommitdiff
authorkergoth <kergoth>2003-01-16 18:06:02 (UTC)
committer kergoth <kergoth>2003-01-16 18:06:02 (UTC)
commitc984baa73724d079076b28788c174ce9fa83fdb5 (patch) (unidiff)
treeaf0d37330ebc9f00804d4a47d5d059832d31b44b
parent3904d85eac20dfd21cf2a3245977f9946865fd92 (diff)
downloadopie-c984baa73724d079076b28788c174ce9fa83fdb5.zip
opie-c984baa73724d079076b28788c174ce9fa83fdb5.tar.gz
opie-c984baa73724d079076b28788c174ce9fa83fdb5.tar.bz2
Use new buildsystem, more documentation coming shortly. Also silenced dependency generation a bit.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile195
-rw-r--r--Makefile.test113
-rw-r--r--Makefile.x11132
-rw-r--r--README27
-rw-r--r--README.NEWBUILD26
5 files changed, 112 insertions, 381 deletions
diff --git a/Makefile b/Makefile
index a22669a..2741105 100644
--- a/Makefile
+++ b/Makefile
@@ -1,136 +1,113 @@
1hehindefault: dynamic 1#!/usr/bin/make -f
2export OPIEDIR:=$(shell pwd)
3export TOPDIR:=$(OPIEDIR)
4export QMAKE:=$(OPIEDIR)/qmake/qmake
5
6export QMAKESPECSDIR=$(OPIEDIR)/mkspecs
2 7
3all: default docs 8noconfig_targets := xconfig menuconfig config oldconfig randconfig \
9 defconfig allyesconfig allnoconfig allmodconfig \
10 clean-configs
4 11
5LIBS=library libopie 12configs += $(TOPDIR)/core/applets/config.in $(TOPDIR)/core/apps/config.in $(TOPDIR)/core/multimedia/config.in $(TOPDIR)/core/pim/config.in $(TOPDIR)/core/pim/today/plugins/config.in $(TOPDIR)/core/settings/config.in $(TOPDIR)/development/config.in $(TOPDIR)/inputmethods/config.in $(TOPDIR)/libopie/ofileselector/config.in $(TOPDIR)/libopie/pim/config.in $(TOPDIR)/libsql/config.in $(TOPDIR)/noncore/applets/config.in $(TOPDIR)/noncore/apps/opie-console/test/config.in $(TOPDIR)/noncore/apps/config.in $(TOPDIR)/noncore/comm/config.in $(TOPDIR)/noncore/decorations/config.in $(TOPDIR)/noncore/games/config.in $(TOPDIR)/noncore/graphics/config.in $(TOPDIR)/noncore/multimedia/config.in $(TOPDIR)/noncore/net/config.in $(TOPDIR)/noncore/net/opietooth/config.in $(TOPDIR)/noncore/settings/config.in $(TOPDIR)/noncore/styles/config.in $(TOPDIR)/noncore/tools/calc2/config.in $(TOPDIR)/noncore/tools/config.in $(TOPDIR)/noncore/unsupported/opiemail/ifaces/config.in $(TOPDIR)/noncore/unsupported/config.in $(TOPDIR)/noncore/todayplugins/config.in
6 13
14# $(TOPDIR)/.config depends on .depends.cfgs, as it depends on $(configs)
15# in order to have a full set of config.in files.
16# .depends depends on $(TOPDIR)/.config
17# everything else depends on .depends, to ensure the dependencies are
18# intact.
19#
20# NOTE: The order in which things happen in this makefile is
21 # -critical-. Do not rearrange this!
22
23all : $(TOPDIR)/.config
7 24
8INPUTCOMPONENTS= inputmethods/keyboard inputmethods/pickboard \ 25$(TOPDIR)/.config : $(TOPDIR)/.depends.cfgs
9 inputmethods/handwriting inputmethods/unikeyboard \
10 inputmethods/jumpx inputmethods/kjumpx \
11 inputmethods/dvorak inputmethods/multikey \
12 26
13APPLETS= core/applets/batteryapplet \ 27all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defconfig : $(TOPDIR)/.depends.cfgs
14 core/applets/irdaapplet core/applets/volumeapplet \
15 core/applets/clockapplet \
16 core/applets/homeapplet core/applets/suspendapplet \
17 core/applets/logoutapplet \
18 core/applets/screenshotapplet core/applets/clipboardapplet \
19 core/applets/cardmon core/applets/obex \
20 core/applets/vmemo \
21 noncore/applets/wirelessapplet noncore/applets/notesapplet
22 28
23MAIL= noncore/mail/libmail noncore/mail/bend 29clean-configs :
30 @echo "Wiping generated config.in files..."
31 @-rm -f $(configs)
24 32
25PLAYER = core/multimedia/opieplayer/libmpeg3 \ 33-include $(TOPDIR)/.depends.cfgs
26 core/multimedia/opieplayer/libmad \
27 core/multimedia/opieplayer/wavplugin \
28 core/multimedia/opieplayer/modplug
29 34
30 COMPONENTS=$(LOCALCOMPONENTS) $(INPUTCOMPONENTS) $(APPLETS) $(MAIL) $(PLAYER) 35all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defconfig : $(configs)
31 36
37$(TOPDIR)/.config: $(TOPDIR)/.depends.cfgs $(configs)
38 $(call descend,scripts/kconfig,conf)
39 @if [ ! -e $@ ]; then \
40 cp $(TOPDIR)/def-configs/opie $@; \
41 fi;
42 @$(MAKE) -C scripts/kconfig conf;
43 ./scripts/kconfig/conf -s ./config.in
32 44
33PIMAPPS = core/pim/addressbook core/pim/datebook \ 45# config rules must have the $(configs) var defined
34 core/pim/today core/pim/todo 46# at the time that they run. we must ensure that .depends.cfgs
47# is built and included by the time we reach this point.
35 48
36TODAYPLUGINS = core/pim/today/plugins/datebook \ 49xconfig :
37 core/pim/today/plugins/addressbook \ 50 $(call descend,scripts/kconfig,qconf)
38 core/pim/today/plugins/todolist \ 51 LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(TOPDIR)/scripts/kconfig \
39 core/pim/today/plugins/mail \ 52 ./scripts/kconfig/qconf ./config.in
40 noncore/todayplugins/stockticker/stockticker noncore/todayplugins/stockticker/stocktickerlib \
41 noncore/todayplugins/fortune \
42 noncore/todayplugins/weather
43 53
54menuconfig : scripts/lxdialog/lxdialog
55 $(call descend,scripts/kconfig,mconf)
56 ./scripts/kconfig/mconf ./config.in
44 57
45COREAPPS = core/apps/filebrowser core/apps/helpbrowser \ 58config :
46 core/apps/textedit core/apps/embeddedkonsole \ 59 $(call descend,scripts/kconfig,conf)
47 core/launcher \ 60 ./scripts/kconfig/conf ./config.in
48 core/opie-login \ 61
49 core/apps/oipkg core/apps/qcop 62oldconfig :
63 $(call descend,scripts/kconfig,conf)
64 ./scripts/kconfig/conf -o ./config.in
65
66randconfig :
67 $(call descend,scripts/kconfig,conf)
68 ./scripts/kconfig/conf -r ./config.in
69
70allyesconfig :
71 $(call descend,scripts/kconfig,conf)
72 ./scripts/kconfig/conf -y ./config.in
73
74allnoconfig :
75 $(call descend,scripts/kconfig,conf)
76 ./scripts/kconfig/conf -n ./config.in
77
78defconfig :
79 $(call descend,scripts/kconfig,conf)
80 ./scripts/kconfig/conf -d ./config.in
50 81
51COREMULTIMEDIA = core/multimedia/opieplayer
52 82
53CORESETTINGS = core/settings/light-and-power core/settings/security \ 83export
54 noncore/settings/netsystemtime core/settings/citytime \
55 core/settings/launcher core/settings/button
56 84
57NONCORESETTINGS =noncore/settings/language noncore/settings/rotation \ 85ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
58 noncore/settings/appearance2 noncore/settings/sound \
59 noncore/settings/mediummount \
60 noncore/settings/tabmanager \
61 noncore/settings/sshkeys noncore/settings/usermanager \
62 noncore/settings/backup
63 86
64NONCORETOOLS = noncore/tools/calculator noncore/tools/clock \ 87export include-config := 1
65 noncore/tools/remote noncore/tools/opie-sh noncore/apps/advancedfm \
66 noncore/tools/formatter
67 88
68NONCORESTYLES = noncore/styles/liquid noncore/styles/theme noncore/styles/metal \ 89-include $(TOPDIR)/.config
69 noncore/styles/flat noncore/styles/fresh 90-include $(TOPDIR)/.depends
70 91
71NONCOREDECOS = noncore/decorations/liquid noncore/decorations/flat \ 92endif
72 noncore/decorations/polished
73 93
74GAMES = noncore/games/minesweep noncore/games/solitaire \ 94-include $(TOPDIR)/..config.cmd
75 noncore/games/tetrix noncore/games/wordgame \
76 noncore/games/parashoot noncore/games/snake \
77 noncore/games/mindbreaker \
78 noncore/games/go noncore/games/qasteroids \
79 noncore/games/fifteen noncore/games/tictac \
80 noncore/games/kcheckers noncore/games/kpacman \
81 noncore/games/kbill noncore/games/buzzword \
82 noncore/games/bounce noncore/games/sfcave
83 95
84NONAPPS = noncore/apps/opie-sheet noncore/apps/tableviewer \ 96SUBDIRS = $(subdir-y)
85 noncore/apps/opie-reader noncore/apps/checkbook noncore/apps/oxygen \
86 noncore/apps/sysinfo noncore/net/opieirc noncore/apps/aqpkg \
87 noncore/apps/opie-console noncore/apps/opie-write
88
89NONNET = noncore/net/ftplib noncore/net/opieftp \
90 noncore/mail
91 97
92NONMULT = noncore/multimedia/showimg noncore/graphics/drawpad \ 98export QMAKESPEC=$(QMAKESPECSDIR)/$(patsubst "%",%,$(CONFIG_SPECFILE))
93 noncore/graphics/qpdf noncore/apps/confedit
94 99
100ifdef CONFIG_OPTIMIZATIONS
101export CFLAGS_RELEASE=$(patsubst "%,%,$(CONFIG_OPTIMIZATIONS))
102export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE))
103endif
95 104
96NONCOMM = noncore/comm/keypebble 105all clean lupdate lrelease install ipk: $(SUBDIRS)
97 106
98PLUGINS = freetype 107$(subdir-y) : $(if $(CONFIG_LIBQPE),$(QTDIR)/stamp-headers) \
108 $(if $(CONFIG_LIBQPE-X11),$(QTDIR)/stamp-headers-x11) \
109 $(TOPDIR)/library/custom.h
99 110
100APPS=$(LOCALAPPS) $(PIMAPPS) $(COREAPPS) \ 111clean : $(TOPDIR)/.config
101 $(COREMULTIMEDIA) $(CORESETTINGS) \
102 $(NONCORESETTINGS) $(NONCORETOOLS) $(NONCORESTYLES) \
103 $(NONCOREDECOS) $(NONAPPS) $(NONNET) $(NONMULT) \
104 $(NONCOMM) $(GAMES) $(TODAYPLUGINS) $(PLUGINS)
105
106
107 112
108NONTMAKEAPPS := core/opiealarm 113include $(TOPDIR)/Rules.make
109
110DOCS = docs/src/opie-policy
111
112dynamic: $(APPS) $(NONTMAKEAPPS)
113
114docs: $(DOCS)
115
116$(COMPONENTS): $(LIBS)
117
118$(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS)
119
120$(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS):
121 $(MAKE) -C $@ -f Makefile
122
123showcomponents:
124 @echo $(LIBS) $(APPS) $(COMPONENTS)
125
126clean:
127 for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done
128
129lupdate:
130 for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done
131
132lrelease:
133 for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done
134
135
136.PHONY: default dynamic $(NONTMAKEAPPS) $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) showcomponents clean
diff --git a/Makefile.test b/Makefile.test
deleted file mode 100644
index 3fe7867..0000000
--- a/Makefile.test
+++ b/dev/null
@@ -1,113 +0,0 @@
1#!/usr/bin/make -f
2export OPIEDIR:=$(shell pwd)
3export TOPDIR:=$(OPIEDIR)
4export QMAKE:=$(OPIEDIR)/qmake/qmake
5
6export QMAKESPECSDIR=$(OPIEDIR)/mkspecs
7
8noconfig_targets := xconfig menuconfig config oldconfig randconfig \
9 defconfig allyesconfig allnoconfig allmodconfig \
10 clean-configs clean
11
12configs += $(TOPDIR)/core/applets/config.in $(TOPDIR)/core/apps/config.in $(TOPDIR)/core/multimedia/config.in $(TOPDIR)/core/pim/config.in $(TOPDIR)/core/pim/today/plugins/config.in $(TOPDIR)/core/settings/config.in $(TOPDIR)/development/config.in $(TOPDIR)/inputmethods/config.in $(TOPDIR)/libopie/ofileselector/config.in $(TOPDIR)/libopie/pim/config.in $(TOPDIR)/libsql/config.in $(TOPDIR)/noncore/applets/config.in $(TOPDIR)/noncore/apps/opie-console/test/config.in $(TOPDIR)/noncore/apps/config.in $(TOPDIR)/noncore/comm/config.in $(TOPDIR)/noncore/decorations/config.in $(TOPDIR)/noncore/games/config.in $(TOPDIR)/noncore/graphics/config.in $(TOPDIR)/noncore/multimedia/config.in $(TOPDIR)/noncore/net/config.in $(TOPDIR)/noncore/net/opietooth/config.in $(TOPDIR)/noncore/settings/config.in $(TOPDIR)/noncore/styles/config.in $(TOPDIR)/noncore/tools/calc2/config.in $(TOPDIR)/noncore/tools/config.in $(TOPDIR)/noncore/unsupported/opiemail/ifaces/config.in $(TOPDIR)/noncore/unsupported/config.in $(TOPDIR)/noncore/todayplugins/config.in
13
14# $(TOPDIR)/.config depends on .depends.cfgs, as it depends on $(configs)
15# in order to have a full set of config.in files.
16# .depends depends on $(TOPDIR)/.config
17# everything else depends on .depends, to ensure the dependencies are
18# intact.
19#
20# NOTE: The order in which things happen in this makefile is
21 # -critical-. Do not rearrange this!
22
23all : $(TOPDIR)/.config
24
25$(TOPDIR)/.config : $(TOPDIR)/.depends.cfgs
26
27all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defconfig : $(TOPDIR)/.depends.cfgs
28
29clean-configs :
30 @echo "Wiping generated config.in files..."
31 @-rm -f $(configs)
32
33-include $(TOPDIR)/.depends.cfgs
34
35all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defconfig : $(configs)
36
37$(TOPDIR)/.config: $(TOPDIR)/.depends.cfgs $(configs)
38 $(call descend,scripts/kconfig,conf)
39 @if [ ! -e $@ ]; then \
40 cp $(TOPDIR)/def-configs/opie $@; \
41 fi;
42 @$(MAKE) -C scripts/kconfig conf;
43 ./scripts/kconfig/conf -s ./config.in
44
45# config rules must have the $(configs) var defined
46# at the time that they run. we must ensure that .depends.cfgs
47# is built and included by the time we reach this point.
48
49xconfig :
50 $(call descend,scripts/kconfig,qconf)
51 LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(TOPDIR)/scripts/kconfig \
52 ./scripts/kconfig/qconf ./config.in
53
54menuconfig : scripts/lxdialog/lxdialog
55 $(call descend,scripts/kconfig,mconf)
56 ./scripts/kconfig/mconf ./config.in
57
58config :
59 $(call descend,scripts/kconfig,conf)
60 ./scripts/kconfig/conf ./config.in
61
62oldconfig :
63 $(call descend,scripts/kconfig,conf)
64 ./scripts/kconfig/conf -o ./config.in
65
66randconfig :
67 $(call descend,scripts/kconfig,conf)
68 ./scripts/kconfig/conf -r ./config.in
69
70allyesconfig :
71 $(call descend,scripts/kconfig,conf)
72 ./scripts/kconfig/conf -y ./config.in
73
74allnoconfig :
75 $(call descend,scripts/kconfig,conf)
76 ./scripts/kconfig/conf -n ./config.in
77
78defconfig :
79 $(call descend,scripts/kconfig,conf)
80 ./scripts/kconfig/conf -d ./config.in
81
82
83export
84
85ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
86
87export include-config := 1
88
89-include $(TOPDIR)/.config
90-include $(TOPDIR)/.depends
91
92endif
93
94-include $(TOPDIR)/..config.cmd
95
96SUBDIRS = $(subdir-y)
97
98export QMAKESPEC=$(QMAKESPECSDIR)/$(patsubst "%",%,$(CONFIG_SPECFILE))
99
100ifdef CONFIG_OPTIMIZATIONS
101export CFLAGS_RELEASE=$(patsubst "%,%,$(CONFIG_OPTIMIZATIONS))
102export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE))
103endif
104
105all clean lupdate lrelease install ipk: $(SUBDIRS)
106
107$(subdir-y) : $(if $(CONFIG_LIBQPE),$(QTDIR)/stamp-headers) \
108 $(if $(CONFIG_LIBQPE-X11),$(QTDIR)/stamp-headers-x11) \
109 $(TOPDIR)/library/custom.h
110
111clean : $(TOPDIR)/.config
112
113include $(TOPDIR)/Rules.make
diff --git a/Makefile.x11 b/Makefile.x11
deleted file mode 100644
index 9aa96da..0000000
--- a/Makefile.x11
+++ b/dev/null
@@ -1,132 +0,0 @@
1indefault: dynamic
2
3all: default docs
4
5LIBS=x11/libqpe-x11 libopie
6
7
8INPUTCOMPONENTS= inputmethods/keyboard inputmethods/pickboard \
9 inputmethods/handwriting inputmethods/unikeyboard \
10 inputmethods/jumpx inputmethods/kjumpx \
11 inputmethods/dvorak inputmethods/multikey \
12
13APPLETS= core/applets/batteryapplet core/applets/batteryapplet-ipaq \
14 core/applets/irdaapplet core/applets/volumeapplet \
15 core/applets/clockapplet core/applets/netmonapplet \
16 core/applets/homeapplet core/applets/suspendapplet \
17 core/applets/logoutapplet \
18 core/applets/screenshotapplet core/applets/clipboardapplet \
19 core/applets/cardmon core/applets/obex \
20 core/applets/vmemo noncore/net/netsetup/dialup \
21 noncore/net/netsetup/lan \
22 noncore/applets/wirelessapplet noncore/applets/notesapplet
23
24MAIL= noncore/mail/libmail noncore/mail/bend
25
26PLAYER = core/multimedia/opieplayer/libmpeg3 \
27 core/multimedia/opieplayer/libmad \
28 core/multimedia/opieplayer/wavplugin \
29 core/multimedia/opieplayer/modplug
30
31 COMPONENTS=$(LOCALCOMPONENTS) $(INPUTCOMPONENTS) $(APPLETS) $(MAIL) $(PLAYER)
32
33
34PIMAPPS = core/pim/addressbook core/pim/datebook \
35 core/pim/today core/pim/todo
36
37TODAYPLUGINS = core/pim/today/plugins/datebook \
38 core/pim/today/plugins/todolist \
39 core/pim/today/plugins/mail \
40
41
42COREAPPS = core/apps/filebrowser core/apps/helpbrowser \
43 core/apps/textedit core/apps/embeddedkonsole \
44 core/launcher \
45 core/opie-login \
46 core/apps/oipkg core/apps/qcop
47
48COREMULTIMEDIA = core/multimedia/opieplayer
49
50CORESETTINGS = core/settings/light-and-power core/settings/security \
51 noncore/settings/netsystemtime core/settings/citytime \
52 core/settings/launcher
53
54NONCORESETTINGS =noncore/settings/language noncore/settings/rotation \
55 noncore/settings/appearance2 noncore/settings/sound \
56 noncore/settings/mediummount \
57 noncore/settings/tabmanager noncore/settings/appskey \
58 noncore/settings/wlansetup \
59 noncore/settings/sshkeys noncore/settings/usermanager \
60 noncore/apps/backup
61
62NONCORETOOLS = noncore/tools/calculator noncore/tools/clock \
63 noncore/tools/remote noncore/tools/opie-sh noncore/apps/advancedfm
64
65NONCORESTYLES = noncore/styles/liquid noncore/styles/theme noncore/styles/metal \
66 noncore/styles/flat noncore/styles/fresh
67
68NONCOREDECOS = noncore/decorations/liquid noncore/decorations/flat \
69 noncore/decorations/polished
70
71GAMES = noncore/games/minesweep noncore/games/solitaire \
72 noncore/games/tetrix noncore/games/wordgame \
73 noncore/games/parashoot noncore/games/snake \
74 noncore/games/mindbreaker \
75 noncore/games/go noncore/games/qasteroids \
76 noncore/games/fifteen noncore/games/tictac \
77 noncore/games/kcheckers noncore/games/kpacman \
78 noncore/games/kbill noncore/games/buzzword \
79 noncore/games/bounce
80
81NONAPPS = noncore/apps/opie-sheet noncore/apps/tableviewer \
82 noncore/apps/opie-reader noncore/apps/checkbook noncore/apps/oxygen \
83 noncore/apps/sysinfo noncore/net/opieirc noncore/apps/aqpkg \
84
85NONNET = noncore/net/netsetup noncore/net/opieftp \
86 noncore/mail
87
88NONMULT = noncore/multimedia/showimg noncore/graphics/drawpad \
89 noncore/graphics/qpdf noncore/apps/confedit
90
91
92NONCOMM = noncore/comm/keypebble
93
94APPS=$(LOCALAPPS) $(PIMAPPS) $(COREAPPS) \
95 $(CORESETTINGS) \
96 $(NONCORESETTINGS) $(NONCORETOOLS) $(NONCORESTYLES) \
97 $(NONCOREDECOS) $(NONAPPS) $(NONNET) $(NONMULT) \
98 $(NONCOMM) $(GAMES) $(TODAYPLUGINS)
99
100
101
102NONTMAKEAPPS := root/opiealarm
103
104DOCS = docs/src/opie-policy
105single: mpegplayer/libmpeg3
106
107dynamic: $(APPS) $(NONTMAKEAPPS)
108
109docs: $(DOCS)
110
111$(COMPONENTS): $(LIBS)
112
113$(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS)
114
115$(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS) single:
116 $(MAKE) -C $@ -f Makefile
117
118showcomponents:
119 @echo $(LIBS) $(APPS) $(COMPONENTS) single
120
121clean:
122 $(MAKE) -C single -f Makefile $@
123 for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done
124
125lupdate:
126 for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done
127
128lrelease:
129 for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done
130
131
132.PHONY: default dynamic $(NONTMAKEAPPS) $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean
diff --git a/README b/README
index a19da4a..e533725 100644
--- a/README
+++ b/README
@@ -1 +1,26 @@
1See http://opie.handhelds.org or docs/ or website/index.html for docs. 1How to use the new build system
2===============================
3
4WARNING: This buildsystem is currently under construction. Therefore
5 it may create more problems than solutions .. ;)
6
7But if you have problems with the old one, you may use the new which
8is much more advanced:
9
10First of all set you shell-variables to the correct settings
11( as you need for the old build system )
12
13Then do the following:
14
15cd $OPIEDIR
16make clean
17ln -s Makefile.test GNUmakefile
18cp def-configs/opie .config
19make menuconfig
20
21Now you can move through the menu and select or deselect anything..
22Exit and save the configuration and enter "make" to create opie...
23
24Have fun with it !
25
26Ciao, Stefan \ No newline at end of file
diff --git a/README.NEWBUILD b/README.NEWBUILD
deleted file mode 100644
index e533725..0000000
--- a/README.NEWBUILD
+++ b/dev/null
@@ -1,26 +0,0 @@
1How to use the new build system
2===============================
3
4WARNING: This buildsystem is currently under construction. Therefore
5 it may create more problems than solutions .. ;)
6
7But if you have problems with the old one, you may use the new which
8is much more advanced:
9
10First of all set you shell-variables to the correct settings
11( as you need for the old build system )
12
13Then do the following:
14
15cd $OPIEDIR
16make clean
17ln -s Makefile.test GNUmakefile
18cp def-configs/opie .config
19make menuconfig
20
21Now you can move through the menu and select or deselect anything..
22Exit and save the configuration and enter "make" to create opie...
23
24Have fun with it !
25
26Ciao, Stefan \ No newline at end of file