# this is a local makefile # Relative path to the root directory (containing lib directory) ifndef COLONYROOT COLONYROOT := .. # Target file name (without extension). TARGET = main # Uncomment this to use the wireless library USE_WIRELESS = 1 # com1 = serial port. Use lpt1 to connect to parallel port. AVRDUDE_PORT = $(shell if uname -s |grep -i w32 >/dev/null; then echo 'COM4:'; else echo '/dev/ttyUSB0'; fi) #AVRDUDE_PORT = $(shell if uname -s |grep -i w32 >/dev/null; then echo 'COM4:'; else echo '/dev/ttyUSB0'; fi) else COLONYROOT := ../$(COLONYROOT) endif include $(COLONYROOT)/Makefile