view lcdtest/Makefile @ 13:238a77db4134

lcdtest: read operations implemented, but don't work
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 06 Apr 2018 06:43:02 +0000
parents 5eaf832d57d0
children 5a602e512b12
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	lcdtest
OBJS=	busops.o commands.o dispatch.o main.o

all:	${PROG}

${PROG}:	${OBJS}
	${CC} -o $@ ${OBJS} -lftdi

clean:
	rm -f ${PROG} *.o *errs *.out