Project

General

Profile

Statistics
| Revision:

root / branches / wireless / code / behaviors / BOM_test / beaconBot / Makefile @ 1513

History | View | Annotate | Download (489 Bytes)

1 1513 dsschult
# this is a local makefile
2 63 emarinel
3
# Relative path to the root directory (containing lib directory)
4
ifndef COLONYROOT
5 1513 dsschult
COLONYROOT = ..
6 63 emarinel
7
# Target file name (without extension).
8 1513 dsschult
TARGET = main
9 63 emarinel
10
# Uncomment this to use the wireless library
11 1513 dsschult
USE_WIRELESS = 0
12 63 emarinel
13
# com1 = serial port. Use lpt1 to connect to parallel port.
14 1513 dsschult
AVRDUDE_PORT = $(shell if uname -s |grep -i w32 >/dev/null; then echo 'COM7:'; else echo '/dev/ttyUSB0'; fi)
15 1097 deffi
16 63 emarinel
else
17 1513 dsschult
COLONYROOT := ../$(COLONYROOT)
18 63 emarinel
endif
19
20 1513 dsschult
include $(COLONYROOT)/Makefile