Project

General

Profile

Statistics
| Revision:

root / branches / wireless / code / projects / Makefile @ 1935

History | View | Annotate | Download (490 Bytes)

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