FreeCalypso > hg > freecalypso-tools
annotate rfcal/tsid-test/Makefile @ 221:a46a68500517
rvinterf/Makefile: install include files in /opt/freecalypso/include/rvinterf
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 20 May 2017 20:04:35 +0000 |
parents | 70bb11ba7485 |
children |
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} |