annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
206
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 CFLAGS= -O2
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 PROGS= fc-tsid-shell
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 INSTBIN=/opt/freecalypso/bin
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 all: ${PROGS}
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 fc-tsid-shell: fc-tsid-shell.c
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 ${CC} ${CFLAGS} -o $@ $@.c
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 install:
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 mkdir -p ${INSTBIN}
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 install -c ${PROGS} ${INSTBIN}
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 clean:
70bb11ba7485 fc-tsid-shell (fc-cmu200d development aid) written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 rm -f *.o *.out *errs ${PROGS}