FreeCalypso > hg > fc-magnetite
diff helpers/Makefile @ 92:40b08f6cb2b8
srec4ram helper utility written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 02 Oct 2016 19:32:00 +0000 |
parents | f4eeab478bfe |
children | 35b17d54773d |
line wrap: on
line diff
--- a/helpers/Makefile Sun Oct 02 16:55:59 2016 +0000 +++ b/helpers/Makefile Sun Oct 02 19:32:00 2016 +0000 @@ -1,12 +1,15 @@ CC= gcc CFLAGS= -O2 -PROGS= makeline str2ind-ver +PROGS= makeline srec4ram str2ind-ver all: ${PROGS} makeline: makeline.c ${CC} ${CFLAGS} -o $@ $@.c +srec4ram: srec4ram.c + ${CC} ${CFLAGS} -o $@ $@.c + str2ind-ver: str2ind-ver.c ${CC} ${CFLAGS} -o $@ $@.c