FreeCalypso > hg > sms-coding-utils
comparison decode/Makefile @ 29:aae078d9eaa6
immigrate sms-pdu-decode and pcm-sms-decode here
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Thu, 13 Jun 2024 02:39:21 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 28:6e925aa54727 | 29:aae078d9eaa6 |
|---|---|
| 1 PROGS= pcm-sms-decode sms-pdu-decode | |
| 2 LIB= ../libcoding/libcoding.a | |
| 3 OBJS0= pcm-sms-decode.o pdu-common.o ${LIB} | |
| 4 OBJS1= pdu-common.o sms-pdu-decode.o ${LIB} | |
| 5 | |
| 6 include ../config.defs | |
| 7 | |
| 8 all: ${PROGS} | |
| 9 | |
| 10 pcm-sms-decode: ${OBJS0} | |
| 11 ${CC} ${CFLAGS} -o $@ ${OBJS0} | |
| 12 | |
| 13 sms-pdu-decode: ${OBJS1} | |
| 14 ${CC} ${CFLAGS} -o $@ ${OBJS1} | |
| 15 | |
| 16 install: | |
| 17 mkdir -p ${DESTDIR}${bindir} | |
| 18 install -c ${PROGS} ${DESTDIR}${bindir} | |
| 19 | |
| 20 clean: | |
| 21 rm -f ${PROGS} *.o *errs *.out |
