Project

General

Profile

Statistics
| Revision:

root / trunk / code / tools / eeprom / Makefile @ 1561

History | View | Annotate | Download (493 Bytes)

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