Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (484 Bytes)

1
########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
TARGET = main
12

    
13
# Uncomment this to use the wireless library
14
USE_WIRELESS = 1
15

    
16
# com1 = serial port. Use lpt1 to connect to parallel port.
17
AVRDUDE_PORT = $(shell if uname -s |grep -i w32 >/dev/null; then echo 'COM4:'; else echo '/dev/ttyUSB0'; fi)
18

    
19
include $(COLONYROOT)/code/makefile_root.mk