comparison 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
comparison
equal deleted inserted replaced
390:37ee46a0dde7 391:a40557e5b35f
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= extr-table
4
5 all: ${PROGS}
6
7 extr-table: extr-table.c
8 ${CC} ${CFLAGS} -o $@ $@.c
9
10 clean:
11 rm -f ${PROGS} *.o *errs *.out