X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/a0024871401e92eefae41c9f94c9fbe91594747a..2fcd50ada8e0916d1ed5addb2567b4bfcee8497c:/Projects/XPLAINBridge/makefile diff --git a/Projects/XPLAINBridge/makefile b/Projects/XPLAINBridge/makefile index 33ac357ed..aacca6780 100644 --- a/Projects/XPLAINBridge/makefile +++ b/Projects/XPLAINBridge/makefile @@ -1,6 +1,6 @@ # # LUFA Library -# Copyright (C) Dean Camera, 2012. +# Copyright (C) Dean Camera, 2015. # # dean [at] fourwalledcubicle [dot] com # www.lufa-lib.org @@ -9,6 +9,8 @@ # LUFA Project Makefile. # -------------------------------------- +# Run "make help" for target help. + AVRISP_PATH = ../AVRISP-MKII MCU = at90usb1287 @@ -29,13 +31,13 @@ LD_FLAGS = # Default target all: +OBJDIR := obj + # Since this project borrows files from the AVRISP-MKII project which may also have an # identical OBJDIR directory, we need to enforce the use of this project's object file # directory as the one where the build object files are to be stored by pre-pending the # absolute path of the current project to the OBJDIR variable. -ifneq ($(OBJDIR),) - override OBJDIR:=$(shell pwd)/$(OBJDIR) -endif +override OBJDIR:=$(shell pwd)/$(OBJDIR) # Include LUFA build script makefiles include $(LUFA_PATH)/Build/lufa_core.mk