FreeCalypso > hg > themwi-ota-tools
view test/Makefile @ 4:c2de42994e57
ota-smspp-envelope utility written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 21 Feb 2021 23:41:46 +0000 |
parents | |
children | 2c022e0334c4 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= ota-smspp-envelope LIBS= ../libutil/libutil.a INSTBIN=/opt/freecalypso/bin all: ${PROGS} ota-smspp-envelope: ota-smspp-envelope.o ${LIBS} ${CC} ${CFLAGS} -o $@ $@.o ${LIBS} install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f ${PROGS} *.o