regen pidl all: rm epan/dissectors/pidl/*-stamp; pushd epan/dissectors/pidl/ && make...
[wireshark-sm.git] / cmake / external / lua54 / 0001-Add-an-install-static-target.patch
blob0f161925ef9908e0dfc25dd62e0e775d423f9188
1 From f9430b91ae6957f9b77e03e3ce1edfbce99b5019 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= <j@v6e.pt>
3 Date: Sat, 10 Jun 2023 19:16:51 +0100
4 Subject: [PATCH] Add an install-static target
6 ---
7 Makefile | 5 +++++
8 1 file changed, 5 insertions(+)
10 diff --git a/Makefile b/Makefile
11 index b2a62cf..7134775 100644
12 --- a/Makefile
13 +++ b/Makefile
14 @@ -64,6 +64,11 @@ install: dummy
15 cd src && $(INSTALL_DATA) $(TO_LIB) $(INSTALL_LIB)
16 cd doc && $(INSTALL_DATA) $(TO_MAN) $(INSTALL_MAN)
18 +install-static: dummy
19 + cd src && $(MKDIR) $(INSTALL_INC) $(INSTALL_LIB)
20 + cd src && $(INSTALL_DATA) $(TO_INC) $(INSTALL_INC)
21 + cd src && $(INSTALL_DATA) $(TO_LIB) $(INSTALL_LIB)
23 uninstall:
24 cd src && cd $(INSTALL_BIN) && $(RM) $(TO_BIN)
25 cd src && cd $(INSTALL_INC) && $(RM) $(TO_INC)
26 --
27 2.41.0