12 lines
431 B
Makefile
12 lines
431 B
Makefile
# Dash Blink Example Makefile
|
|
# Copyright (c) 2015 Tony DiCola
|
|
# Released under a MIT license: http://opensource.org/licenses/MIT
|
|
|
|
BINARY = blink
|
|
|
|
# Note if you have multiple source files, list them all in an OBJS variable.
|
|
# The Makefile rules will pick them up and compile their source appropriately.
|
|
# For example if you have a foo.c and bar.c to include set the OBJS variable:
|
|
# OBJS = foo.o bar.o
|
|
|
|
include ../Makefile.include
|