FreeCalypso > hg > themwi-ota-tools
annotate Makefile @ 9:b6331ae4eea9
Note-about-padding added
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 22 Feb 2021 02:19:43 +0000 |
parents | a33d4d8079d2 |
children | 2c022e0334c4 |
rev | line source |
---|---|
7
a33d4d8079d2
ota-set-msisdn utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
5
diff
changeset
|
1 PROGDIR=gen smswrap test |
5 | 2 LIBDIR= libutil |
3 SUBDIR= ${PROGDIR} ${LIBDIR} | |
4 | |
5 all: ${SUBDIR} | |
6 | |
7
a33d4d8079d2
ota-set-msisdn utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
5
diff
changeset
|
7 gen: libutil |
5 | 8 smswrap: libutil |
9 test: libutil | |
10 | |
11 ${SUBDIR}: FRC | |
12 cd $@; ${MAKE} ${MFLAGS} | |
13 | |
14 clean: FRC | |
15 rm -f a.out core errs | |
16 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done | |
17 | |
18 install: FRC | |
19 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done | |
20 | |
21 FRC: |