Skip to content

Commit

Permalink
makefile: Fix MKDEP to work when cross compiling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgi Chorbadzhiyski committed Dec 9, 2011
1 parent 09ef32b commit 35c1d06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,6 +1,6 @@
CC = $(CROSS)$(TARGET)gcc
LINK = $(CROSS)$(TARGET)ld -o
MKDEP = $(CROSS)$(TARGET)$(CC) -M -o $*.d $<
MKDEP = $(CC) -M -o $*.d $<

LIBRARY_LINK_OPTS = -L. -r
CFLAGS = -O2 -ggdb -std=c99 -D_GNU_SOURCE
Expand Down

0 comments on commit 35c1d06

Please sign in to comment.