* Switch to using cmod by default.

* FreeBSD 6 comment.
This commit is contained in:
bg- 2007-01-12 18:24:51 +00:00
parent 2ae3edb0d5
commit 6a56b5de79
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.8 2006/12/20 13:46:14 bg- Exp $
# $Id: Makefile,v 1.9 2007/01/12 18:24:51 bg- Exp $
#
# This makefile requires GNU make!
@ -25,13 +25,13 @@ MCU=msp430x1611
ARCH=msp430.o minileds.o watchdog.o light.o button.o spi.o ds2411.o rom.o xmem.o i2c.o
SYSTEM=process.o procinit.o service.o clock.o etimer.o timer.o \
elfloader_compat.o cle.o symtab.o
cmod.o cle.o symtab.o
UIP=uip.o uiplib.o tcpip.o uip-fw.o uip-fw-service.o uipbuf.o \
tcpdump.o psock.o dhcpc.o uaodv.o uaodv-rt.o uip-udp-packet.o
UIPDRIVERS=slip.o slip_uart1.o \
cc2420.o cc2420_uart0.o cc2420_send_ip.o cc2420_send_uaodv.o
LIBS=memb.o list.o malloc.o realloc.o malloc_compact.o rand.o assert.o crtk.o
SYSAPPS=tcp_loader.o
SYSAPPS=tcp_loader2.o
LIBFILES=$(SYSTEM) $(ARCH) $(UIP) $(UIPDRIVERS) $(LIBS) $(SYSAPPS)
CP=cp
@ -54,7 +54,7 @@ vpath %.c $(SRCDIRS) ${filter-out CVS,${wildcard labs/*}}
# Set COM port if not already set.
# DOS: 1 => COM2, 2 => COM3, etc.
# Linux: /dev/ttyUSB0, /dev/ttyUSB1, etc.
# FreeBSD: /dev/ttyU0, /dev/ttyU1, etc.
# FreeBSD 6.2: /dev/cuaU0, /dev/cuaU1, etc.
ifndef COMPORT
COMPORT := /dev/ttyUSB0
endif