1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

* fixed bindir creation in msba2 Makefile

This commit is contained in:
Oleg Hahm 2013-03-21 17:49:59 +01:00
parent 07e8a7e25b
commit 1b2d192556

View File

@ -20,7 +20,7 @@ $(BINDIR)$(ARCH): $(OBJ)
# compile and generate dependency info
$(BINDIR)%.o: %.c
mkdir $(BINDIR)
mkdir -p $(BINDIR)
$(CC) $(CFLAGS) $(INCLUDES) $(BOARDINCLUDE) $(PROJECTINCLUDE) $(CPUINCLUDE) -c $*.c -o $(BINDIR)$*.o
$(CC) $(CFLAGS) $(INCLUDES) $(BOARDINCLUDE) $(PROJECTINCLUDE) $(CPUINCLUDE) -MM $*.c > $(BINDIR)$*.d
@printf "$(BINDIR)"|cat - $(BINDIR)$*.d > /tmp/riot_out && mv /tmp/riot_out $(BINDIR)$*.d