1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

generalize .S compilation target flags

This commit is contained in:
Ludwig Ortmann 2013-05-15 11:18:18 +02:00
parent 5cb68df9e2
commit 2c744bc1e8

View File

@ -26,7 +26,7 @@ $(BINDIR)%.o: %.s
@$(AS) $(ASFLAGS) $*.s -o $(BINDIR)$*.o
$(BINDIR)%.o: %.S
@gcc -c -m32 $*.S -o $(BINDIR)$*.o
@gcc -c $(CFLAGS) $*.S -o $(BINDIR)$*.o
# remove compilation products
clean::