blob: 32a07dde0e38da2b9e593687d1d79eb87217df76 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#!/usr/bin/make -f
name = repo
# version 0.7.0
# Copyright (C) 2009 Luke Shumaker
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# Originally written by Luke Shumaker <lukeshu@sbcglobal.net>.
# Variables ########################################################
RM ?= rm -f
CP ?= cp
SED ?= sed
INSTALL = install
MKDIR ?= $(INSTALL) -d #mkdir -p
INSTALL_PROGRAM ?= $(INSTALL)
INSTALL_DATA ?= $(INSTALL) -m 644
SHELL ?= @SHELL@
rvsdir ?= @rvsdir@/rvs
srcdir ?= @srcdir@
libdir = $(rvsdir)/$(name)
reldir = plugins/$(name)
mysrcdir = $(srcdir)/$(reldir)
VPATH = $(mysrcdir)
# phony targets ####################################################
all : $(name)
.PHONY : $(name) install uninstall clean distclean
.SUFFIXES :
# targets ##########################################################
srcFiles = $(filter-out %/Makefile.in,$(shell find $(mysrcdir)/ -type f))
shSrcFiles = $(filter %.sh,$(srcFiles))
shOutFiles = $(patsubst $(mysrcdir)/%,%,$(basename $(shSrcFiles)))
shExeFiles = $(patsubst %,$(libdir)/%, $(shOutFiles) )
$(name) : $(shOutFiles)
# (un)install ######################################################
install : $(shExeFiles)
echo $(name) >> $(rvsdir)/plugins
uninstall :
$(RM) -r $(libdir)
$(SED) -i "/^$(name)$/ d" $(rvsdir)/plugins
# clean ############################################################
clean :
$(RM) $(shOutFiles)
distclean : clean
$(RM) Makefile
# implicit rules ###################################################
b := @
# build shell scripts
% : $(mysrcdir)/%.sh
$(MKDIR) $(dir $@)
$(SED) 's/$bSHELL@/$(subst /,\/,$(SHELL))/g' <$< > $@
# workaround... idk why it doesn't match `lib/'
lib/% : $(mysrcdir)/lib/%.sh
$(MKDIR) $(dir $@)
$(SED) 's/$bSHELL@/$(subst /,\/,$(SHELL))/g' <$< > $@
# install
$(libdir)/% : %
$(MKDIR) $(dir $@)
$(INSTALL_PROGRAM) $< $@
|