author | kergoth <kergoth> | 2002-11-06 22:46:03 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-06 22:46:03 (UTC) |
commit | b6a55a339cf2d5829a9f13bf0bd50899c811f54d (patch) (unidiff) | |
tree | 30fc7cecfa669a18ef10fd9168678b020b40e101 /Makefile.test | |
parent | e44cdb16632a4c904d8c43471fea1f8e790c7651 (diff) | |
download | opie-b6a55a339cf2d5829a9f13bf0bd50899c811f54d.zip opie-b6a55a339cf2d5829a9f13bf0bd50899c811f54d.tar.gz opie-b6a55a339cf2d5829a9f13bf0bd50899c811f54d.tar.bz2 |
Use optimizations
-rw-r--r-- | Makefile.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.test b/Makefile.test index 11fec40..209eef3 100644 --- a/Makefile.test +++ b/Makefile.test | |||
@@ -65,41 +65,47 @@ oldconfig : | |||
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 | ||
98 | export CFLAGS_RELEASE=$(patsubst "%,%,$(CONFIG_OPTIMIZATIONS)) | ||
99 | export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE)) | ||
100 | $(warning CFLAGS_RELEASE is $(CFLAGS_RELEASE)) | ||
101 | endif | ||
102 | |||
97 | all clean: $(subdir-y) | 103 | all clean: $(subdir-y) |
98 | 104 | ||
99 | $(subdir-y) : $(if $(CONFIG_LIBQPE),$(TOPDIR)/stamp-headers) \ | 105 | $(subdir-y) : $(if $(CONFIG_LIBQPE),$(TOPDIR)/stamp-headers) \ |
100 | $(if $(CONFIG_LIBQPE-X11),$(TOPDIR)/stamp-headers-x11) \ | 106 | $(if $(CONFIG_LIBQPE-X11),$(TOPDIR)/stamp-headers-x11) \ |
101 | $(TOPDIR)/library/custom.h | 107 | $(TOPDIR)/library/custom.h |
102 | 108 | ||
103 | clean : $(TOPDIR)/.config | 109 | clean : $(TOPDIR)/.config |
104 | 110 | ||
105 | include $(TOPDIR)/Rules.make | 111 | include $(TOPDIR)/Rules.make |