diff options
author | Fredrik Salomonsson <plattfot@gmail.com> | 2018-11-10 14:05:53 -0800 |
---|---|---|
committer | Fredrik Salomonsson <plattfot@gmail.com> | 2018-11-10 14:05:53 -0800 |
commit | ab5db38d59ab79aeee83ca31b6b480f398ca340e (patch) | |
tree | c710da25394c0405d6fdd65d5647debabac76ebf /Makefile | |
parent | 31e9cd5bc6ec3cb551753aa8dc11ac6641a223ea (diff) | |
download | pinentry-rofi-ab5db38d59ab79aeee83ca31b6b480f398ca340e.tar.gz |
Updated makefile with the rename
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,7 +1,5 @@ -GUILE_SUPPORT = $(filter $(.FEATURES),guile) - -ifeq ($(GUILE_SUPPORT),) +ifeq ($(filter $(.FEATURES),guile),) $(error No guile support bailing out) endif @@ -10,5 +8,5 @@ PREFIX ?= PREFIX_BIN ?= $(PREFIX)/usr/bin install: @install -d $(PREFIX_BIN) $(PREFIX)$(GUILE_SITE_CCACHE) - @install -T rofi-pinentry.scm $(PREFIX_BIN)/pinentry-rofi - @guild compile rofi-pinentry.scm -o $(PREFIX)$(GUILE_SITE_CCACHE)/pinentry-rofi.go + @install -T pinentry-rofi.scm $(PREFIX_BIN)/pinentry-rofi-guile + @guild compile pinentry-rofi.scm -o $(PREFIX)$(GUILE_SITE_CCACHE)/pinentry-rofi-guile.go |