FreeCalypso > hg > freecalypso-hwlab
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lcdtest/Makefile Fri Apr 06 06:15:11 2018 +0000 @@ -0,0 +1,12 @@ +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