changeset 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 ec040f521cc2
children f5f8776f7c66
files rvinterf/Makefile
diffstat 1 files changed, 15 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rvinterf/Makefile	Sun Nov 24 23:18:30 2013 +0000
@@ -0,0 +1,15 @@
+SUBDIR=	etm lowlevel
+
+all:	${SUBDIR}
+
+${SUBDIR}: FRC
+	cd $@; ${MAKE} ${MFLAGS}
+
+clean: FRC
+	rm -f a.out core errs
+	for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done
+
+install: FRC
+	for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done
+
+FRC: