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

Merge pull request #440 from LudwigOrtmann/use_cc_make_variable

use $(CC) for *.S files
This commit is contained in:
Ludwig Ortmann 2013-12-18 09:52:10 -08:00
commit 6074e50b70

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::