FreeCalypso > hg > fc-magnetite
comparison 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 |
comparison
equal
deleted
inserted
replaced
59:b67077cf6b1b | 60:f4eeab478bfe |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= makeline | 3 PROGS= makeline str2ind-ver |
4 | 4 |
5 all: ${PROGS} | 5 all: ${PROGS} |
6 | 6 |
7 makeline: makeline.c | 7 makeline: makeline.c |
8 ${CC} ${CFLAGS} -o $@ $@.c | 8 ${CC} ${CFLAGS} -o $@ $@.c |
9 | 9 |
10 str2ind-ver: str2ind-ver.c | |
11 ${CC} ${CFLAGS} -o $@ $@.c | |
12 | |
10 clean: | 13 clean: |
11 rm -f ${PROGS} | 14 rm -f ${PROGS} |