FreeCalypso > hg > freecalypso-hwlab
view lcdtest/Makefile @ 12:5eaf832d57d0
lcdtest program started, skeleton compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 06 Apr 2018 06:15:11 +0000 |
parents | |
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