##
## Makefile for the learning line walker
## 
## Jacky Baltes <j.baltes@auckland.ac.nz> May 5 2001
##

# name for the legOS kernel
BRICKOS_ROOT=/usr/local/robocup/brickos/
KERNEL=$(BRICKOS_ROOT)/boot/brickOS

PROGRAMS= firmwareXTL.lx
# extra dynamic sources
DOBJECTS=

include $(BRICKOS_ROOT)/Makefile.common
include $(BRICKOS_ROOT)/Makefile.user

all:: $(PROGRAMS) 

#DEBUG= "-DDEBUG"

# doc/html subdirectory

depend::
	$(MAKEDEPEND) *.c > .depend

.depend::
	$(MAKEDEPEND) *.c > .depend

tag:
	ctags --format=1 *.c include/*.h include/*/*.h *.c

clean:
	rm -rf .depend* *.o *.dis *.dis2 *~ *.bak *.tgz *.s tags *.ds1 *.ds2 *.dmap *.dcoff *.srec *.map *.coff

realclean: clean
	rm -f *.lx

# depencencies
#
ifndef NODEPS
include .depend
endif
