Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / unit_tests / Makefile @ 1496

History | View | Annotate | Download (484 Bytes)

1 789 dsschult
########Update This Section########
2
#
3
#
4
5
# Relative path to the root directory (containing lib directory)
6
ifndef COLONYROOT
7
COLONYROOT = ../../..
8
endif
9
10
# Target file name (without extension).
11 958 cmar
TARGET = main
12 789 dsschult
13
# Uncomment this to use the wireless library
14 848 dsschult
USE_WIRELESS = 1
15 789 dsschult
16
# com1 = serial port. Use lpt1 to connect to parallel port.
17 1471 dsschult
AVRDUDE_PORT = $(shell if uname -s |grep -i w32 >/dev/null; then echo 'COM4:'; else echo '/dev/ttyUSB0'; fi)
18 789 dsschult
19 1476 dsschult
include $(COLONYROOT)/code/makefile_root.mk