Skip to content

Commit ab8c5b8

Browse files
committed
fix help of {un,}install targets
1 parent 61eb98b commit ab8c5b8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ $(foreach demo, $(strip $(DEMOS)), $(eval $(call DEMO_template,$(demo))))
8484
#This rule installs the library and the header files. This must be run
8585
#as root in order to have a high enough permission to write to the correct
8686
#directories and to set the owner and group to root.
87-
install: $(call print-help,install,Installs the library and headers)) .common_install
87+
install: $(call print-help,install,Installs the library and headers) .common_install
8888

8989
install_bins: $(call print-help,install_bins,Installs the useful demos ($(USEFUL_DEMOS))) .common_install_bins
9090

91-
uninstall: $(call print-help,uninstall,Uninstalls the library and headers)) .common_uninstall
91+
uninstall: $(call print-help,uninstall,Uninstalls the library and headers) .common_uninstall
9292

9393
profile:
9494
LTC_CFLAGS="$(LTC_CFLAGS) -fprofile-generate" $(MAKE) timing EXTRALIBS="$(EXTRALIBS) -lgcov"

makefile.shared

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ endef
5959

6060
$(foreach demo, $(strip $(DEMOS)), $(eval $(call DEMO_template,$(demo))))
6161

62-
install: $(call print-help,install,Installs the library, headers and pkd-config file)) .common_install
62+
install: $(call print-help,install,Installs the library, headers and pkd-config file) .common_install
6363
sed -e 's,^prefix=.*,prefix=$(PREFIX),' -e 's,^Version:.*,Version: $(VERSION_PC),' libtomcrypt.pc.in > libtomcrypt.pc
6464
install -d $(DESTDIR)$(LIBPATH)/pkgconfig
6565
install -m 644 libtomcrypt.pc $(DESTDIR)$(LIBPATH)/pkgconfig/
6666

6767
install_bins: $(call print-help,install_bins,Installs the useful demos ($(USEFUL_DEMOS))) .common_install_bins
6868

69-
uninstall: $(call print-help,uninstall,Uninstalls the library, headers and pkd-config file)) .common_uninstall
69+
uninstall: $(call print-help,uninstall,Uninstalls the library, headers and pkd-config file) .common_uninstall
7070
rm $(DESTDIR)$(LIBPATH)/pkgconfig/libtomcrypt.pc
7171

7272
# ref: $Format:%D$

0 commit comments

Comments
 (0)