FreeCalypso > hg > fc-pcsc-tools
annotate Makefile @ 161:884b93362449
libutil: nibbles_to_ascii() function implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 26 Feb 2021 21:10:26 +0000 |
parents | f064dbcc5f41 |
children | 4cd2023f56a6 |
rev | line source |
---|---|
27
be946be3f9a7
top Makefile: add misc, fix dependency for uicc
Mychaela Falconia <falcon@freecalypso.org>
parents:
23
diff
changeset
|
1 PROGDIR=misc simtool uicc |
157
f064dbcc5f41
libutil split from libcommon
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
2 LIBDIR= libcommon libutil |
2 | 3 SUBDIR= ${PROGDIR} ${LIBDIR} |
4 | |
5 all: ${SUBDIR} | |
6 | |
157
f064dbcc5f41
libutil split from libcommon
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
7 misc: libcommon libutil |
f064dbcc5f41
libutil split from libcommon
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
8 simtool: libcommon libutil |
f064dbcc5f41
libutil split from libcommon
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
9 uicc: libcommon libutil |
2 | 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: |