FreeCalypso > hg > freecalypso-tools
view ringtools/Makefile @ 868:f6c379f0cbbe
ringtools/examples: move the old BU "melodies" into old subdir
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 28 Mar 2022 05:53:58 +0000 |
parents | dfd98dd46068 |
children | f442156d31ad |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= fc-e1decode fc-e1gen fc-pwt-comp INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin all: ${PROGS} fc-e1decode: fc-e1decode.c ${CC} ${CFLAGS} -o $@ $@.c fc-e1gen: fc-e1gen.c ${CC} ${CFLAGS} -o $@ $@.c fc-pwt-comp: fc-pwt-comp.c ${CC} ${CFLAGS} -o $@ $@.c install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f ${PROGS} *.o *errs *.out