FreeCalypso > hg > freecalypso-tools
comparison rvinterf/Makefile @ 0:e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 11 Jun 2016 00:13:35 +0000 |
parents | |
children | a46a68500517 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e7502631a0f9 |
---|---|
1 PROGDIR=asyncshell ctracedec etmsync lowlevel tmsh | |
2 LIBDIR= libasync libg23 | |
3 SUBDIR= ${PROGDIR} ${LIBDIR} | |
4 | |
5 all: ${SUBDIR} | |
6 | |
7 asyncshell: libasync libg23 | |
8 lowlevel: libg23 | |
9 tmsh: libasync | |
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: |