crt: Regenerate Makefile.in

Signed-off-by: Martin Storsjö <martin@martin.st>
(cherry picked from commit a94d694161)
This commit is contained in:
Martin Storsjö 2024-06-04 15:36:15 +03:00
parent 130bc6220e
commit d06a956018

View File

@ -82848,8 +82848,17 @@ _libm_dummy.c:
cd $(dir $@) && $(AR) -M < $(abspath $<)
$(RANLIB) $@
%.def: %.def.in
$(MKDIR_P) $(@D) && $(CPP) -x c $< -Wp,-w -undef -P -I$(top_srcdir)/def-include > $@
lib32/%.def: lib32/%.def.in
$(MKDIR_P) $(@D) && $(CPP) -x c $< -Wp,-w -undef -P -I$(top_srcdir)/def-include -DDEF_I386 > $@
lib64/%.def: lib64/%.def.in
$(MKDIR_P) $(@D) && $(CPP) -x c $< -Wp,-w -undef -P -I$(top_srcdir)/def-include -DDEF_X64 > $@
libarm32/%.def: libarm32/%.def.in
$(MKDIR_P) $(@D) && $(CPP) -x c $< -Wp,-w -undef -P -I$(top_srcdir)/def-include -DDEF_ARM32 > $@
libarm64/%.def: libarm64/%.def.in
$(MKDIR_P) $(@D) && $(CPP) -x c $< -Wp,-w -undef -P -I$(top_srcdir)/def-include -DDEF_ARM64 > $@
lib32/%.def: lib-common/%.def.in
$(MKDIR_P) $(@D) && $(CPP) -x c $< -Wp,-w -undef -P -I$(top_srcdir)/def-include -DDEF_I386 > $@