FreeCalypso > hg > freecalypso-tools
view 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 source
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}