FreeCalypso > hg > freecalypso-tools
comparison rfcal/tsid-test/Makefile @ 206:70bb11ba7485
fc-tsid-shell (fc-cmu200d development aid) written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 14 May 2017 00:34:23 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
205:de8f75783b3b | 206:70bb11ba7485 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= fc-tsid-shell | |
4 INSTBIN=/opt/freecalypso/bin | |
5 | |
6 all: ${PROGS} | |
7 | |
8 fc-tsid-shell: fc-tsid-shell.c | |
9 ${CC} ${CFLAGS} -o $@ $@.c | |
10 | |
11 install: | |
12 mkdir -p ${INSTBIN} | |
13 install -c ${PROGS} ${INSTBIN} | |
14 | |
15 clean: | |
16 rm -f *.o *.out *errs ${PROGS} |