diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-01 21:50:15 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-01 21:50:15 +0000 |
commit | 8b9c2bd0462a1185eaa4d320472106e9aa0c7646 (patch) | |
tree | f9850e6f29191eddc3e82745b0dc39425a1c5716 /Makerules | |
parent | a37cc0c3d41ad4b7f387ed8dd74c083dcd00c6c5 (diff) |
Split up the .o and .os rules, so all the sources are created if DOPIC is disabled.
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -25,13 +25,19 @@ compile-m=$(CC) $^ -c -o $@ $(CPPFLAGS) $(CFLAGS) $(ARCH_CFLAGS) $(CFLAGS-$(suff CFLAGS-.os+=$(PICFLAG) CFLAGS-.oS+=$(PICFLAG) -DSHARED -%.o %.os: %.c +%.o: %.c + $(compile.c) + +%.os: %.c $(compile.c) %.oS: %.c $(compile.c) -%.o %.os: %.S +%.o: %.S + $(compile.S) + +%.os: %.S $(compile.S) #ifeq ($(HAVE_ELF),y) |