FreeCalypso > hg > freecalypso-ui-dev
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lcdpoll/Makefile Wed Mar 14 23:04:44 2018 +0000 @@ -0,0 +1,17 @@ +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}