From ab8c5b8b4982f4eda81acd7af0f505b7b8029e28 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Thu, 20 Jul 2017 12:58:28 +0200 Subject: [PATCH] fix help of {un,}install targets --- makefile | 4 ++-- makefile.shared | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/makefile b/makefile index 1f7b201..3200d86 100644 --- a/makefile +++ b/makefile @@ -84,11 +84,11 @@ $(foreach demo, $(strip $(DEMOS)), $(eval $(call DEMO_template,$(demo)))) #This rule installs the library and the header files. This must be run #as root in order to have a high enough permission to write to the correct #directories and to set the owner and group to root. -install: $(call print-help,install,Installs the library and headers)) .common_install +install: $(call print-help,install,Installs the library and headers) .common_install install_bins: $(call print-help,install_bins,Installs the useful demos ($(USEFUL_DEMOS))) .common_install_bins -uninstall: $(call print-help,uninstall,Uninstalls the library and headers)) .common_uninstall +uninstall: $(call print-help,uninstall,Uninstalls the library and headers) .common_uninstall profile: LTC_CFLAGS="$(LTC_CFLAGS) -fprofile-generate" $(MAKE) timing EXTRALIBS="$(EXTRALIBS) -lgcov" diff --git a/makefile.shared b/makefile.shared index a0164c0..74e76d3 100644 --- a/makefile.shared +++ b/makefile.shared @@ -59,14 +59,14 @@ endef $(foreach demo, $(strip $(DEMOS)), $(eval $(call DEMO_template,$(demo)))) -install: $(call print-help,install,Installs the library, headers and pkd-config file)) .common_install +install: $(call print-help,install,Installs the library, headers and pkd-config file) .common_install sed -e 's,^prefix=.*,prefix=$(PREFIX),' -e 's,^Version:.*,Version: $(VERSION_PC),' libtomcrypt.pc.in > libtomcrypt.pc install -d $(DESTDIR)$(LIBPATH)/pkgconfig install -m 644 libtomcrypt.pc $(DESTDIR)$(LIBPATH)/pkgconfig/ install_bins: $(call print-help,install_bins,Installs the useful demos ($(USEFUL_DEMOS))) .common_install_bins -uninstall: $(call print-help,uninstall,Uninstalls the library, headers and pkd-config file)) .common_uninstall +uninstall: $(call print-help,uninstall,Uninstalls the library, headers and pkd-config file) .common_uninstall rm $(DESTDIR)$(LIBPATH)/pkgconfig/libtomcrypt.pc # ref: $Format:%D$