From c89539ca1f8448cf399ca4418cea473401ff49bc Mon Sep 17 00:00:00 2001 From: "Greg A. Woods" Date: Fri, 9 Feb 2024 15:39:22 -0800 Subject: [PATCH] src/Makefile: associate some related rules --- src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 1aa9f12..c2e1d26 100644 --- a/src/Makefile +++ b/src/Makefile @@ -121,13 +121,14 @@ CFLAGS += -I${GENHDIR} # Note also this makes the link before the library may exist. # afterdepend: _bmake_static_lib_build_symlink -afterinstall: _bmake_static_lib_install_symlink _bmake_static_lib_build_symlink: .PHONY ln -fs lib$(LIB).a lib$(LIB)_s.a CLEANFILES += lib$(LIB)_s.a +afterinstall: _bmake_static_lib_install_symlink + _bmake_static_lib_install_symlink: .PHONY ln -fs lib$(LIB).a ${DESTDIR}${LIBDIR}/lib$(LIB)_s.a