changeset 6:cd2dcf6eed67

add top Makefile
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 06 May 2023 15:24:38 +0000
parents 882d97266174
children 36a95de13d30
files 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/Makefile	Sat May 06 15:24:38 2023 +0000
@@ -0,0 +1,15 @@
+SUBDIR=	f-demime
+
+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: