FreeCalypso > hg > freecalypso-reveng
annotate compal/melody-extr/Makefile @ 408:14302e075f37 default tip
hr-bits: further conditionalize SID-1-diff
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 22 Jul 2024 10:06:38 +0000 |
parents | 35009c936a4a |
children |
rev | line source |
---|---|
391
a40557e5b35f
compal/melody-extr: wrote table extractor
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 CC= gcc |
a40557e5b35f
compal/melody-extr: wrote table extractor
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 CFLAGS= -O2 |
392
35009c936a4a
compal/melody-extr: first attempt at actual melody extraction
Mychaela Falconia <falcon@freecalypso.org>
parents:
391
diff
changeset
|
3 PROGS= extr-onemel extr-table |
391
a40557e5b35f
compal/melody-extr: wrote table extractor
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 |
a40557e5b35f
compal/melody-extr: wrote table extractor
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 all: ${PROGS} |
a40557e5b35f
compal/melody-extr: wrote table extractor
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 |
392
35009c936a4a
compal/melody-extr: first attempt at actual melody extraction
Mychaela Falconia <falcon@freecalypso.org>
parents:
391
diff
changeset
|
7 extr-onemel: extr-onemel.c |
35009c936a4a
compal/melody-extr: first attempt at actual melody extraction
Mychaela Falconia <falcon@freecalypso.org>
parents:
391
diff
changeset
|
8 ${CC} ${CFLAGS} -o $@ $@.c |
35009c936a4a
compal/melody-extr: first attempt at actual melody extraction
Mychaela Falconia <falcon@freecalypso.org>
parents:
391
diff
changeset
|
9 |
391
a40557e5b35f
compal/melody-extr: wrote table extractor
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 extr-table: extr-table.c |
a40557e5b35f
compal/melody-extr: wrote table extractor
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 ${CC} ${CFLAGS} -o $@ $@.c |
a40557e5b35f
compal/melody-extr: wrote table extractor
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 |
a40557e5b35f
compal/melody-extr: wrote table extractor
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 clean: |
a40557e5b35f
compal/melody-extr: wrote table extractor
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 rm -f ${PROGS} *.o *errs *.out |