diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-25 21:46:08 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-25 21:46:08 +0000 |
commit | 8852947daad111938ba951471566e634e8c2e2c9 (patch) | |
tree | c5c24149503f9dc1a1fa9211b75667122eaa62f1 /Makerules | |
parent | 4d059e4cd968fdef7e9198331fc40c91bc25c935 (diff) |
Convert configuration to new build system
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -89,7 +89,8 @@ define compile.u $(CC) $^ $(DEPS-$(notdir $@)) -o $@ $(CFLAGS) $(CFLAGS-$(notdir $(^D))) $(CFLAGS-$(notdir $@)) $(STRIPTOOL) $(STRIP_FLAGS) $@ endef -hcompile.u = $(HOSTCC) $^ $(DEPS-$(notdir $@)) -o $@ $(BUILD_LDFLAGS) $(BUILD_LDFLAGS-$(notdir $(^D))) $(HOSTCFLAGS) $(HOSTCFLAGS-$(notdir $(^D))) $(HOSTCFLAGS-$(notdir $@)) +hcompile.u = $(HOSTCC) $^ $(DEPS-$(notdir $@)) -o $@ $(BUILD_LDFLAGS) $(BUILD_LDFLAGS-$(notdir $(^D))) $(BUILD_LDFLAGS-$(notdir $@)) $(HOSTCFLAGS) $(HOSTCFLAGS-$(notdir $(^D))) $(HOSTCFLAGS-$(notdir $@)) +hcompile.o = $(HOSTCC) $^ $(DEPS-$(notdir $@)) -c -o $@ $(HOSTCFLAGS) $(HOSTCFLAGS-$(notdir $(^D))) $(HOSTCFLAGS-$(notdir $@)) compile.c = @$(disp_compile.c) ; $(cmd_compile.c) compile.E = $(cmd_compile.c:-c=-E) |