##
## Makefile for the uleague sample robot
## 
## Jacky Baltes <j.baltes@auckland.ac.nz> May 5 2001
##

# name for the legOS kernel
#--> SET this to be the directory where you've installed your brickos.new software
BRICKOS_ROOT=/home/robocup/brickos.new
KERNEL=$(BRICKOS_ROOT)/boot/brickOS

#--> CHANGE this to be the name of your source code file with a .lx extension (instead of .c)
PROGRAMS= lowercaseR1.lx lowercaseR2.lx lowercaseR3.lx lowercaseR4.lx lowercaseR5.lx lowercaseR6.lx
UNO= lowercaseR1.lx
DOS= lowercaseR2.lx
TRES= lowercaseR3.lx
CUATRO= lowercaseR4.lx
CINCO= lowercaseR5.lx
SEIS= lowercaseR6.lx
# extra dynamic sources
DOBJECTS=

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

all:: $(PROGRAMS) 

uno::  $(UNO)
dos::  $(DOS)
tres::  $(TRES)
cuatro::  $(CUATRO)
cinco::  $(CINCO)
seis::  $(SEIS)

#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
