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

use $(CC) for *.S files

This commit is contained in:
Ludwig Ortmann 2013-12-18 18:05:49 +01:00
parent 6d2ed29668
commit 4c612f6d08

View File

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