view smswrap/Makefile @ 6:86b4f288862d

libutil: functions for encoding MSISDN record
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 22 Feb 2021 00:41:12 +0000
parents d5e9af482548
children 2c022e0334c4
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	ota-smswrap-sjs1
LIBS=	../libutil/libutil.a
INSTBIN=/opt/freecalypso/bin

all:	${PROGS}

ota-smswrap-sjs1:	ota-smswrap-sjs1.o ${LIBS}
	${CC} ${CFLAGS} -o $@ $@.o ${LIBS} -lcrypto

install:
	mkdir -p ${INSTBIN}
	install -c ${PROGS} ${INSTBIN}

clean:
	rm -f ${PROGS} *.o