# Imakefile for XAtaxx

# you may want to uncomment and fill in the next line if you are not installing
# in the system default BINDIR
# BINDIR =

# !%^#*
DEPLIBS =

/* DATADIR is where the boards and bitmaps will be installed */
DATADIR	= lib

LOCAL_LIBRARIES = $(XLIB) 
SRCS	= bits.c board.c colbits.c demo.c display.c main.c nubot.c parse.c zot.c
OBJS	= bits.o board.o colbits.o demo.o display.o main.o nubot.o parse.o zot.o
DEFINES = -DDATADIR=\"${DATADIR}\"
ComplexProgramTarget(xataxx)

install:: install.lib

install.lib:
	for i in lib//**/*; do \
		(set -x; install -c $$i $(DATADIR)); \
	done
