diff options
author | David S. Miller <davem@davemloft.net> | 2012-05-21 21:59:29 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-05-21 21:59:29 -0700 |
commit | 46259beccca5f4b3a6c64a1b84b2c09f079eb3ae (patch) | |
tree | 9667c5ca5575abacd4fff345a6a91310750396c5 /Makerules | |
parent | 59f0c22ed2b131cac16446d6bcc3d5da1d09e120 (diff) | |
download | glibc-46259beccca5f4b3a6c64a1b84b2c09f079eb3ae.tar glibc-46259beccca5f4b3a6c64a1b84b2c09f079eb3ae.tar.gz glibc-46259beccca5f4b3a6c64a1b84b2c09f079eb3ae.tar.bz2 glibc-46259beccca5f4b3a6c64a1b84b2c09f079eb3ae.zip |
Remove straggling references to .s files.
* Makefules (o-iterator): Remove .s cases.
(compile-command.s): Delete.
(COMPILE.s): Delete.
* sysdeps/unix/make-syscalls.sh: Remove .s file tests.
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -275,12 +275,6 @@ object-suffixes-left := $(all-object-suffixes) include $(o-iterator) define o-iterator-doit -$(objpfx)%$o: %.s $(before-compile); $$(compile-command.s) -endef -object-suffixes-left := $(all-object-suffixes) -include $(o-iterator) - -define o-iterator-doit $(objpfx)%$o: %.c $(before-compile); $$(compile-command.c) endef object-suffixes-left := $(all-object-suffixes) @@ -304,12 +298,6 @@ object-suffixes-left := $(all-object-suffixes) include $(o-iterator) define o-iterator-doit -$(objpfx)%$o: $(objpfx)%.s $(before-compile); $$(compile-command.s) -endef -object-suffixes-left := $(all-object-suffixes) -include $(o-iterator) - -define o-iterator-doit $(objpfx)%$o: $(objpfx)%.c $(before-compile); $$(compile-command.c) endef object-suffixes-left := $(all-object-suffixes) @@ -365,7 +353,6 @@ endif # sysd-sorted-done # Generate .dT files as we compile. compile-mkdep-flags = -MD -MP -MF $@.dt -MT $@ compile-command.S = $(compile.S) $(OUTPUT_OPTION) $(compile-mkdep-flags) -compile-command.s = $(COMPILE.s) $< $(OUTPUT_OPTION) $(compile-mkdep-flags) compile-command.c = $(compile.c) $(OUTPUT_OPTION) $(compile-mkdep-flags) compile-command.cc = $(compile.cc) $(OUTPUT_OPTION) $(compile-mkdep-flags) @@ -381,7 +368,6 @@ compile.S = $(CC) $< -c $(CPPFLAGS) $(S-CPPFLAGS) \ $(ASFLAGS) $(ASFLAGS-$(suffix $@)) COMPILE.S = $(CC) -c $(CPPFLAGS) $(S-CPPFLAGS) \ $(ASFLAGS) $(ASFLAGS-$(suffix $@)) -COMPILE.s = $(filter-out -pipe,$(CC)) -c $(ASFLAGS) # We need this for the output to go in the right place. It will default to # empty if make was configured to work with a cc that can't grok -c and -o |