annotate compal/melody-extr/Makefile @ 392:35009c936a4a

compal/melody-extr: first attempt at actual melody extraction
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 01 Apr 2022 06:03:47 +0000
parents a40557e5b35f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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