summaryrefslogtreecommitdiff
path: root/Makefile
blob: 29cc48279437d59559b0e006aa096cbe84fde9f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
bash=/usr/bin/env bash

EDIT = { m4 -P | sed -e 's|@bash@|$(bash)|g' -e 's|@VERSION@|$(VERSION)|'; }

PACKAGE = emacsutils
VERSION = 0.9

topoutdir ?= .
topsrcdir ?= .

include $(topoutdir)/build-aux/Makefile.head.mk

programs = ediff emacsmail emacsterm emacsterm-rxvt emacsterm-xterm
desktops = emacsmail emacsterm

files.out.all = $(programs) $(addsuffix .desktop,$(desktops))
files.sys.all = $(addprefix $(bindir)/,$(programs)) $(foreach d,$(desktops),$(datarootdir)/applications/$d.desktop)
files.out.int += *.sh

%.sh: %.sh.in common.sh.in .var.bash .var.VERSION
	$(EDIT) < $< > $@

$(DESTDIR)$(bindir)/%: %
	$(NORMAL_INSTALL)
	$(INSTALL_PROGRAM) $< $@
$(DESTDIR)$(datarootdir)/applications/%: %
	$(NORMAL_INSTALL)
	$(INSTALL_DATA) $< $@

.DELETE_ON_ERROR:
.SECONDARY:
include $(topoutdir)/build-aux/Makefile.tail.mk