FreeCalypso > hg > freecalypso-reveng
view compal/melody-extr/Makefile @ 391:a40557e5b35f
compal/melody-extr: wrote table extractor
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 01 Apr 2022 05:04:23 +0000 |
parents | |
children | 35009c936a4a |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= extr-table all: ${PROGS} extr-table: extr-table.c ${CC} ${CFLAGS} -o $@ $@.c clean: rm -f ${PROGS} *.o *errs *.out