FreeCalypso > hg > fc-rfcal-tools
comparison scripts/Makefile @ 90:713749548df6
fc-rfcal-tri900 script and fc-rfcal-tee helper implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 17 Jul 2017 05:51:31 +0000 |
parents | |
children | fd856f729618 |
comparison
equal
deleted
inserted
replaced
89:0937d34fb3ba | 90:713749548df6 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= fc-rfcal-tee | |
4 SCRIPTS=fc-rfcal-tri900 | |
5 INSTBIN=/opt/freecalypso/bin | |
6 | |
7 all: ${PROGS} | |
8 | |
9 fc-rfcal-tee: fc-rfcal-tee.c | |
10 ${CC} ${CFLAGS} -o $@ $@.c | |
11 | |
12 install: | |
13 mkdir -p ${INSTBIN} | |
14 install -c ${PROGS} ${SCRIPTS} ${INSTBIN} | |
15 | |
16 clean: | |
17 rm -f *.o *.out *errs ${PROGS} |