FreeCalypso > hg > freecalypso-tools
changeset 338:97a72ec0a6c1
uptools/Makefile created
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 04 Feb 2018 06:05:04 +0000 |
parents | 560af437a429 |
children | 7f8f446db97e |
files | uptools/Makefile |
diffstat | 1 files changed, 19 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uptools/Makefile Sun Feb 04 06:05:04 2018 +0000 @@ -0,0 +1,19 @@ +PROGDIR=sms-pdu-decode +LIBDIR= libcoding +SUBDIR= ${PROGDIR} ${LIBDIR} + +all: ${SUBDIR} + +sms-pdu-decode: libcoding + +${SUBDIR}: FRC + cd $@; ${MAKE} ${MFLAGS} + +clean: FRC + rm -f a.out core errs + for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done + +install: FRC + for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done + +FRC: