comparison 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
comparison
equal deleted inserted replaced
3:8dfa3bfaa9c1 4:c2de42994e57
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= ota-smspp-envelope
4 LIBS= ../libutil/libutil.a
5 INSTBIN=/opt/freecalypso/bin
6
7 all: ${PROGS}
8
9 ota-smspp-envelope: ota-smspp-envelope.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