FreeCalypso > hg > fc-magnetite
diff helpers/Makefile @ 60:f4eeab478bfe
str2ind-ver helper written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 01 Oct 2016 00:54:04 +0000 |
parents | 05945a9b9dda |
children | 40b08f6cb2b8 |
line wrap: on
line diff
--- a/helpers/Makefile Sat Oct 01 00:24:12 2016 +0000 +++ b/helpers/Makefile Sat Oct 01 00:54:04 2016 +0000 @@ -1,11 +1,14 @@ CC= gcc CFLAGS= -O2 -PROGS= makeline +PROGS= makeline str2ind-ver all: ${PROGS} makeline: makeline.c ${CC} ${CFLAGS} -o $@ $@.c +str2ind-ver: str2ind-ver.c + ${CC} ${CFLAGS} -o $@ $@.c + clean: rm -f ${PROGS}