FreeCalypso > hg > freecalypso-tools
diff rfcal/cmu200/Makefile @ 187:219ae678b955
fc-serscpi utility written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 23 Apr 2017 00:51:01 +0000 |
parents | |
children | 31d43f0e469a |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rfcal/cmu200/Makefile Sun Apr 23 00:51:01 2017 +0000 @@ -0,0 +1,18 @@ +CC= gcc +CFLAGS= -O2 +PROGS= fc-serscpi +INSTBIN=/opt/freecalypso/bin + +SERSCPI_OBJS= openport.o sertool.o + +all: ${PROGS} + +fc-serscpi: ${SERSCPI_OBJS} + ${CC} ${CFLAGS} -o $@ ${SERSCPI_OBJS} + +install: + mkdir -p ${INSTBIN} + install -c ${PROGS} ${INSTBIN} + +clean: + rm -f *.o *.out *errs ${PROGS}