FreeCalypso > hg > themwi-ota-tools
comparison smswrap/Makefile @ 2:d5e9af482548
ota-smswrap-sjs1 program written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 21 Feb 2021 22:21:29 +0000 |
parents | |
children | 2c022e0334c4 |
comparison
equal
deleted
inserted
replaced
1:b149db92cb0e | 2:d5e9af482548 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= ota-smswrap-sjs1 | |
4 LIBS= ../libutil/libutil.a | |
5 INSTBIN=/opt/freecalypso/bin | |
6 | |
7 all: ${PROGS} | |
8 | |
9 ota-smswrap-sjs1: ota-smswrap-sjs1.o ${LIBS} | |
10 ${CC} ${CFLAGS} -o $@ $@.o ${LIBS} -lcrypto | |
11 | |
12 install: | |
13 mkdir -p ${INSTBIN} | |
14 install -c ${PROGS} ${INSTBIN} | |
15 | |
16 clean: | |
17 rm -f ${PROGS} *.o |