FreeCalypso > hg > freecalypso-tools
view uptools/sms-pdu-decode/Makefile @ 590:026df5681bd3
Source-dirs: libpwon and openmoko subdirs documented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 03 Feb 2020 19:38:41 +0000 |
parents | 90d7c360a614 |
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