summaryrefslogtreecommitdiff
path: root/Makefile
blob: 59161c0df48cce55107afa7083dda46c99c1c034 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
prefix ?= /usr/local
bindir ?= $(prefix)/bin

INSTALL = install
RM = rm -f

BINFILES = \
  arg \
  chardiff \
  chardiff_pre \
  chardiff_post \
  daemon \
  e \
  emacsmail \
  emacsterm \
  hangman \
  newegg \
  ord \
  roll \
  sysfiles \
  urldecode \
  v-www-browser \
  v-editor \
  whatismyip

all: build .gitignore

build: $(BINFILES)

install: $(addprefix $(DESTDIR)$(bindir)/,$(BINFILES))

$(DESTDIR)$(bindir)/%: % | $(DESTDIR)$(bindir)
	$(INSTALL) '$<' '$(@D)'

$(DESTDIR)$(bindir):
	mkdir -p '$@'

clean:
	$(RM) $(BINFILES)
	$(RM) *~

%: %.php
	cat $< >$@
	chmod a+x $@

# Note that this rule would be way simpler if I could count on 'arg'
# already being installed ("arg '*~' $(BINFILES) > $@")
.gitignore: Makefile
	echo '*~'  > $@
	for file in $(BINFILES); do echo "$$file"; done >> $@