FreeCalypso > hg > freecalypso-tools
view uptools/sms-pdu-decode/Makefile @ 473:90d7c360a614
main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 13 Feb 2019 05:06:15 +0000 |
parents | 560af437a429 |
children | 9f7a263ad7f0 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROG= sms-pdu-decode LIB= ../libcoding/libcoding.a OBJS= ${PROG}.o ${LIB} INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin all: ${PROG} ${PROG}: ${OBJS} ${CC} ${CFLAGS} -o $@ ${OBJS} install: mkdir -p ${INSTBIN} install -c ${PROG} ${INSTBIN} clean: rm -f ${PROG} *.o *errs *.out