FreeCalypso > hg > themwi-ota-tools
comparison gen/Makefile @ 7:a33d4d8079d2
ota-set-msisdn utility written, compiles
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Mon, 22 Feb 2021 01:00:39 +0000 |
| parents | |
| children | 2c022e0334c4 |
comparison
equal
deleted
inserted
replaced
| 6:86b4f288862d | 7:a33d4d8079d2 |
|---|---|
| 1 CC= gcc | |
| 2 CFLAGS= -O2 | |
| 3 PROGS= ota-set-msisdn | |
| 4 LIBS= ../libutil/libutil.a | |
| 5 INSTBIN=/opt/freecalypso/bin | |
| 6 | |
| 7 all: ${PROGS} | |
| 8 | |
| 9 ota-set-msisdn: ota-set-msisdn.o ${LIBS} | |
| 10 ${CC} ${CFLAGS} -o $@ $@.o ${LIBS} | |
| 11 | |
| 12 install: | |
| 13 mkdir -p ${INSTBIN} | |
| 14 install -c ${PROGS} ${INSTBIN} | |
| 15 | |
| 16 clean: | |
| 17 rm -f ${PROGS} *.o |
