author | kergoth <kergoth> | 2003-01-16 06:18:34 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-16 06:18:34 (UTC) |
commit | 9a90cb1a9e61d2bc3298f2131671d9f32abbac5a (patch) (unidiff) | |
tree | 1d2d0eb0372f32e682fe139b3e89882f381dc0db /Makefile.test | |
parent | 216efd1cb2210211816b865b5574866e598bf3bd (diff) | |
download | opie-9a90cb1a9e61d2bc3298f2131671d9f32abbac5a.zip opie-9a90cb1a9e61d2bc3298f2131671d9f32abbac5a.tar.gz opie-9a90cb1a9e61d2bc3298f2131671d9f32abbac5a.tar.bz2 |
i18n for new buildsystem :)
-rw-r--r-- | Makefile.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.test b/Makefile.test index 8418158..5b51f6c 100644 --- a/Makefile.test +++ b/Makefile.test | |||
@@ -54,57 +54,57 @@ menuconfig : scripts/lxdialog/lxdialog | |||
54 | $(call descend,scripts/kconfig,mconf) | 54 | $(call descend,scripts/kconfig,mconf) |
55 | ./scripts/kconfig/mconf ./config.in | 55 | ./scripts/kconfig/mconf ./config.in |
56 | 56 | ||
57 | config : | 57 | config : |
58 | $(call descend,scripts/kconfig,conf) | 58 | $(call descend,scripts/kconfig,conf) |
59 | ./scripts/kconfig/conf ./config.in | 59 | ./scripts/kconfig/conf ./config.in |
60 | 60 | ||
61 | oldconfig : | 61 | oldconfig : |
62 | $(call descend,scripts/kconfig,conf) | 62 | $(call descend,scripts/kconfig,conf) |
63 | ./scripts/kconfig/conf -o ./config.in | 63 | ./scripts/kconfig/conf -o ./config.in |
64 | 64 | ||
65 | randconfig : | 65 | randconfig : |
66 | $(call descend,scripts/kconfig,conf) | 66 | $(call descend,scripts/kconfig,conf) |
67 | ./scripts/kconfig/conf -r ./config.in | 67 | ./scripts/kconfig/conf -r ./config.in |
68 | 68 | ||
69 | allyesconfig : | 69 | allyesconfig : |
70 | $(call descend,scripts/kconfig,conf) | 70 | $(call descend,scripts/kconfig,conf) |
71 | ./scripts/kconfig/conf -y ./config.in | 71 | ./scripts/kconfig/conf -y ./config.in |
72 | 72 | ||
73 | allnoconfig : | 73 | allnoconfig : |
74 | $(call descend,scripts/kconfig,conf) | 74 | $(call descend,scripts/kconfig,conf) |
75 | ./scripts/kconfig/conf -n ./config.in | 75 | ./scripts/kconfig/conf -n ./config.in |
76 | 76 | ||
77 | defconfig : | 77 | defconfig : |
78 | $(call descend,scripts/kconfig,conf) | 78 | $(call descend,scripts/kconfig,conf) |
79 | ./scripts/kconfig/conf -d ./config.in | 79 | ./scripts/kconfig/conf -d ./config.in |
80 | 80 | ||
81 | 81 | ||
82 | export | 82 | export |
83 | 83 | ||
84 | ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) | 84 | ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) |
85 | 85 | ||
86 | export include-config := 1 | 86 | export include-config := 1 |
87 | 87 | ||
88 | -include $(TOPDIR)/.config | 88 | -include $(TOPDIR)/.config |
89 | -include $(TOPDIR)/.depends | 89 | -include $(TOPDIR)/.depends |
90 | 90 | ||
91 | endif | 91 | endif |
92 | 92 | ||
93 | -include $(TOPDIR)/..config.cmd | 93 | -include $(TOPDIR)/..config.cmd |
94 | 94 | ||
95 | export QMAKESPEC=$(QMAKESPECSDIR)/$(patsubst "%",%,$(CONFIG_SPECFILE)) | 95 | export QMAKESPEC=$(QMAKESPECSDIR)/$(patsubst "%",%,$(CONFIG_SPECFILE)) |
96 | 96 | ||
97 | ifdef CONFIG_OPTIMIZATIONS | 97 | ifdef CONFIG_OPTIMIZATIONS |
98 | export CFLAGS_RELEASE=$(patsubst "%,%,$(CONFIG_OPTIMIZATIONS)) | 98 | export CFLAGS_RELEASE=$(patsubst "%,%,$(CONFIG_OPTIMIZATIONS)) |
99 | export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE)) | 99 | export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE)) |
100 | endif | 100 | endif |
101 | 101 | ||
102 | all clean: $(subdir-y) | 102 | all clean lupdate lrelease: $(subdir-y) |
103 | 103 | ||
104 | $(subdir-y) : $(if $(CONFIG_LIBQPE),$(QTDIR)/stamp-headers) \ | 104 | $(subdir-y) : $(if $(CONFIG_LIBQPE),$(QTDIR)/stamp-headers) \ |
105 | $(if $(CONFIG_LIBQPE-X11),$(QTDIR)/stamp-headers-x11) \ | 105 | $(if $(CONFIG_LIBQPE-X11),$(QTDIR)/stamp-headers-x11) \ |
106 | $(TOPDIR)/library/custom.h | 106 | $(TOPDIR)/library/custom.h |
107 | 107 | ||
108 | clean : $(TOPDIR)/.config | 108 | clean : $(TOPDIR)/.config |
109 | 109 | ||
110 | include $(TOPDIR)/Rules.make | 110 | include $(TOPDIR)/Rules.make |