FreeCalypso > hg > fc-pcsc-tools
annotate Makefile @ 159:2557012666ea
libutil: pack_reversed_nibbles() moved to revnibbles.c
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Fri, 26 Feb 2021 20:45:17 +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: | 
