FreeCalypso > hg > freecalypso-tools
comparison uptools/sms-pdu-decode/Makefile @ 337:560af437a429
sms-pdu-decode main program written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 04 Feb 2018 03:32:24 +0000 |
parents | |
children | 90d7c360a614 |
comparison
equal
deleted
inserted
replaced
336:ead4ee22ef62 | 337:560af437a429 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROG= sms-pdu-decode | |
4 LIB= ../libcoding/libcoding.a | |
5 OBJS= ${PROG}.o ${LIB} | |
6 INSTBIN=/opt/freecalypso/bin | |
7 | |
8 all: ${PROG} | |
9 | |
10 ${PROG}: ${OBJS} | |
11 ${CC} ${CFLAGS} -o $@ ${OBJS} | |
12 | |
13 install: | |
14 mkdir -p ${INSTBIN} | |
15 install -c ${PROG} ${INSTBIN} | |
16 | |
17 clean: | |
18 rm -f ${PROG} *.o *errs *.out |