FreeCalypso > hg > freecalypso-tools
view ringtools/Makefile @ 45:4368f76e3d56
loadtools/install-helpers.sh no longer needed
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 26 Oct 2016 05:57:14 +0000 |
parents | cefdc6623322 |
children | 2bbd9a389ca0 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= fc-e1gen INSTBIN=/usr/local/bin all: ${PROGS} fc-e1gen: fc-e1gen.c ${CC} ${CFLAGS} -o $@ $@.c install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f ${PROGS} *.o *errs *.out