diff Makefile @ 461:a53225b44ea5

further refinement of build system: follow general free sw standards as much as possible
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 11 May 2024 07:09:59 +0000
parents 19f1aa01ea10
children
line wrap: on
line diff
--- a/Makefile	Fri May 10 23:04:44 2024 +0000
+++ b/Makefile	Sat May 11 07:09:59 2024 +0000
@@ -26,6 +26,17 @@
 	for i in ${SUBDIR_INST}; do (cd $$i; ${MAKE} ${MFLAGS} \
 		DESTDIR=${DESTDIR} install); done
 
+# The following two subset install targets are only for experts;
+# if you are not sure why they are needed, you *don't* need them!
+
+install-lib:	FRC
+	for i in ${SUBDIR_LIBPROD}; do (cd $$i; ${MAKE} ${MFLAGS} \
+		DESTDIR=${DESTDIR} install); done
+
+install-utils:	FRC
+	for i in ${SUBDIR_UTILS}; do (cd $$i; ${MAKE} ${MFLAGS} \
+		DESTDIR=${DESTDIR} install); done
+
 clean: FRC
 	rm -f a.out core errs
 	for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done