Created
May 24, 2019 09:26
-
-
Save Fusion86/2ea9428191209b941fe16336adb416de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################# | |
# | |
# Project Makefile | |
# | |
# (c) Wouter van Ooijen (www.voti.nl) 2016 | |
# | |
# This file is in the public domain. | |
# | |
############################################################################# | |
# source files in this project (main.cpp is automatically assumed) | |
SOURCES := | |
# header files in this project | |
HEADERS := | |
# other places to look for files for this project | |
SEARCH := | |
# set RELATIVE to the next higher directory | |
# and defer to the Makefile.* there | |
RELATIVE := .. | |
include $(RELATIVE)/Makefile.due |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################# | |
# | |
# makefile.due common settings for Arduino Due projects | |
# | |
# (c) Wouter van Ooijen (www.voti.nl) 2017 | |
# | |
# This file is in the public domain. | |
# | |
############################################################################# | |
# settings for Arduino Due projects | |
TARGET := arduino_due | |
SERIAL_PORT ?= COM2 | |
CONSOLE_BAUDRATE := 2400 | |
# defer to the Makefile.shared | |
include $(RELATIVE)/Makefile.link |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################# | |
# | |
# makefile.shared common settings and link to bmptk/makefile.inc | |
# | |
# (c) Wouter van Ooijen (www.voti.nl) 2017 | |
# | |
# This file is in the public domain. | |
# | |
############################################################################# | |
# the location of the ti software directory | |
ifeq ($(OS),Windows_NT) | |
TI-SOFTWARE := C:/ti-software | |
else | |
TI-SOFTWARE := $(HOME) | |
endif | |
# add Catch | |
SEARCH += $(TI-SOFTWARE)/Catch2/single_include | |
# include hwlib | |
HWLIB ?= $(TI-SOFTWARE)/hwlib | |
include $(HWLIB)/makefile.inc | |
# set BMPTK to the bmptk subdirectory | |
BMPTK ?= $(TI-SOFTWARE)/bmptk | |
# Defer to the bmptk/Makefile.inc to do the work | |
include $(BMPTK)/Makefile.inc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment