FreeCalypso > hg > freecalypso-reveng
view dspanal/Makefile @ 307:8e816bba2ff7
dspanal: char2bin utility written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 28 Oct 2019 02:37:47 +0000 |
parents | b893ea27e081 |
children | f8344bc4fd61 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= char2bin patchanal all: ${PROGS} ${PROGS}: ${CC} ${CFLAGS} -o $@ $@.c char2bin: char2bin.c patchanal: patchanal.c clean: rm -f ${PROGS} *.o *errs *.out