FreeCalypso > hg > freecalypso-tools
view rfcal/cmu200/Makefile @ 189:425f16556e69
doc/CMU200-notes started
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 23 Apr 2017 16:42:43 +0000 |
parents | 219ae678b955 |
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}