FreeCalypso > hg > freecalypso-tools
comparison ffstools/newcomp/Makefile @ 318:182c3ae209f6
compile-fc-batt tool written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 17 Dec 2017 00:57:42 +0000 |
parents | |
children | 7572c35a768a |
comparison
equal
deleted
inserted
replaced
317:b8479251ad0a | 318:182c3ae209f6 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= compile-fc-batt | |
4 INSTBIN=/opt/freecalypso/bin | |
5 | |
6 all: ${PROGS} | |
7 | |
8 compile-fc-batt: compile-fc-batt.c | |
9 ${CC} ${CFLAGS} -o $@ $@.c | |
10 | |
11 install: ${PROGS} | |
12 mkdir -p ${INSTBIN} | |
13 install -c ${PROGS} ${INSTBIN} | |
14 | |
15 clean: | |
16 rm -f ${PROGS} |