X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/a665f74081aaaa3a02b6760776e19d388cb89704..8d183c53b6f6d65593c06d4d40a0c5641798aaf9:/common/Makefile.common

diff --git a/common/Makefile.common b/common/Makefile.common
index 66bdddab..c1193f9a 100644
--- a/common/Makefile.common
+++ b/common/Makefile.common
@@ -17,7 +17,7 @@ OBJCOPY = $(CROSS)objcopy
 
 OBJDIR	= obj
 
-INCLUDE = -I../include
+INCLUDE = -I../include -I../common
 
 # Windows' echo echos its input verbatim, on Posix there is some
 #  amount of shell command line parsing going on. echo "" on 
@@ -33,7 +33,7 @@ PATHSEP=/
 FLASH_TOOL=client/flasher
 DETECTED_OS=UNAME
 # You may/should set this in your environment
-LIBGCC ?= $(shell $(CC) -print-file-name=interwork/libgcc.a)
+LIBGCC ?= $(shell $(CC) -print-libgcc-file-name)
 
 else
 
@@ -57,7 +57,7 @@ INCLUDES = ../include/proxmark3.h ../include/at91sam7s512.h ../include/config_gp
 CFLAGS =  -c $(INCLUDE) -Wall -Werror -pedantic -std=gnu99 $(APP_CFLAGS)
 
 THUMBOBJ = $(patsubst %.c,$(OBJDIR)/%.o,$(THUMBSRC))
-ARMOBJ   = $(patsubst %.c,$(OBJDIR)/%.o,$(ARMSRC))
+ARMOBJ   = $(ARMSRC:%.c=$(OBJDIR)/%.o)
 ASMOBJ   = $(patsubst %.s,$(OBJDIR)/%.o,$(ASMSRC))
 VERSIONOBJ = $(OBJDIR)/version.o