FreeCalypso > hg > freecalypso-tools
comparison 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 |
comparison
equal
deleted
inserted
replaced
186:9968717eedd7 | 187:219ae678b955 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= fc-serscpi | |
4 INSTBIN=/opt/freecalypso/bin | |
5 | |
6 SERSCPI_OBJS= openport.o sertool.o | |
7 | |
8 all: ${PROGS} | |
9 | |
10 fc-serscpi: ${SERSCPI_OBJS} | |
11 ${CC} ${CFLAGS} -o $@ ${SERSCPI_OBJS} | |
12 | |
13 install: | |
14 mkdir -p ${INSTBIN} | |
15 install -c ${PROGS} ${INSTBIN} | |
16 | |
17 clean: | |
18 rm -f *.o *.out *errs ${PROGS} |