FreeCalypso > hg > freecalypso-ui-dev
view lcdpoll/Makefile @ 9:6c35c9f2ecab
README: update for the fc-host-tools-r8 release
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 18 Mar 2018 21:30:10 +0000 |
parents | 06e900c54ae3 |
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}