FreeCalypso > hg > freecalypso-reveng
view 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 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= extr-onemel extr-table all: ${PROGS} extr-onemel: extr-onemel.c ${CC} ${CFLAGS} -o $@ $@.c extr-table: extr-table.c ${CC} ${CFLAGS} -o $@ $@.c clean: rm -f ${PROGS} *.o *errs *.out