changeset 11:44148d13283c

add top level Makefile
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 27 Aug 2023 13:39:51 -0800
parents f9a83463ab52
children 7543aa173634
files Makefile
diffstat 1 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Sun Aug 27 13:39:51 2023 -0800
@@ -0,0 +1,12 @@
+SUBDIR=	euse-demo smsc-daemon
+
+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
+
+FRC: