diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-08-11 03:49:16 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-08-11 03:49:16 -0400 |
commit | 804e9940049934215d2947c1068016cba852e560 (patch) | |
tree | 4fab03dd366370cd593eeaba69fecd233467d326 | |
parent | 7568ee4cbf317f8c21fb9b45e059db2a45c81488 (diff) | |
download | musl-804e9940049934215d2947c1068016cba852e560.tar.gz musl-804e9940049934215d2947c1068016cba852e560.tar.xz musl-804e9940049934215d2947c1068016cba852e560.zip |
add subarch asm support for PIC objects/shared libc
this rule was omitted in previous subarch asm commit
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile index 7250e1e6..9206ca02 100644 --- a/Makefile +++ b/Makefile @@ -99,6 +99,9 @@ $(MEMOPS_SRCS:%.c=%.o) $(MEMOPS_SRCS:%.c=%.lo): CFLAGS += $(CFLAGS_MEMOPS) %.o: %.c $(GENH) $(IMPH) $(CC) $(CFLAGS_ALL_STATIC) -c -o $@ $< +%.lo: $(ARCH)$(ASMSUBARCH)/%.s + $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $< + %.lo: $(ARCH)/%.s $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $< |