Skip to content

Instantly share code, notes, and snippets.

@Fusion86
Created May 24, 2019 09:26
Show Gist options
  • Save Fusion86/2ea9428191209b941fe16336adb416de to your computer and use it in GitHub Desktop.
Save Fusion86/2ea9428191209b941fe16336adb416de to your computer and use it in GitHub Desktop.
#############################################################################
#
# 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
#############################################################################
#
# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment