comparison tsid-test/Makefile @ 0:bd62be88259d

initial import of rfcal code and docs from freecalypso-tools repository
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 20 May 2017 18:49:35 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:bd62be88259d
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}