FreeCalypso > hg > freecalypso-sw
comparison rvinterf/Makefile @ 186:faa31a47f102
rvinterf/Makefile: build both rvinterf/lowlevel and rvinterf/etm
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 24 Nov 2013 23:18:30 +0000 |
parents | |
children | c146f38d2b5f |
comparison
equal
deleted
inserted
replaced
185:ec040f521cc2 | 186:faa31a47f102 |
---|---|
1 SUBDIR= etm lowlevel | |
2 | |
3 all: ${SUBDIR} | |
4 | |
5 ${SUBDIR}: FRC | |
6 cd $@; ${MAKE} ${MFLAGS} | |
7 | |
8 clean: FRC | |
9 rm -f a.out core errs | |
10 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done | |
11 | |
12 install: FRC | |
13 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done | |
14 | |
15 FRC: |