FreeCalypso > hg > freecalypso-ui-dev
view lcdpoll/Makefile @ 3:06e900c54ae3
fc-lcdpoll program put together, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 14 Mar 2018 23:04:44 +0000 |
parents | |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 -I/opt/freecalypso/include PROG= fc-lcdpoll OBJS= connect.o interf.o launchrvif.o main.o memops.o INSTBIN=/opt/freecalypso/bin all: ${PROG} ${PROG}: ${OBJS} ${CC} ${CFLAGS} -o $@ ${OBJS} install: ${PROG} mkdir -p ${INSTBIN} install -c ${PROG} ${INSTBIN} clean: rm -f *.o *.out *errs ${PROG}