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
|
--- Makefile.in.orig Fri Jan 31 13:10:25 1997
+++ Makefile.in Thu Apr 3 19:02:57 1997
@@ -15,7 +15,7 @@
bindir = $(exec_prefix)/bin
# Directory in which to install library files.
-libdir = $(prefix)/lib/dotfile-$(version)
+libdir = $(prefix)/share/dotfile-$(version)
# Directory for the manual page
mandir = $(prefix)/man/man1
@@ -23,7 +23,6 @@
SHELL = /bin/sh
### Tell the user that there is nothing to be compiled.
-.PHONY: nothing
nothing:
@echo "The Dotfile Generator does not contain any files which has to be compiled!"
@echo "On the other hand, during installation, all the modules need to be"
@@ -32,10 +31,8 @@
#
# install all the files in the corect places.
#
-.PHONY: install
install: copydirs bytecompile
-.PHONY: copydirs
copydirs:
$(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(libdir) \
$(libdir)/Generator $(mandir)
@@ -49,20 +46,18 @@
done
cp dotfile.1 $(mandir)
-@RM@ $(bindir)/dotfile
- -@LN@ -s $(bindir)/dotfile-$(version) $(bindir)/dotfile
+ -@LN@ -s dotfile-$(version) $(bindir)/dotfile
chmod 755 $(bindir)/dotfile
chmod 755 $(bindir)/dotfile-$(version)
-.PHONY: bytecompile
bytecompile: $(MODULES)
#
# Targets that requre X (the modules using the fonts widget)
#
-.PHONY fvwm1 fvwm2:
fvwm1 fvwm2:
- @if wish testwish; then \
- @WISH@ $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile; \
+ @if $(WISH) testwish; then \
+ $(WISH) $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile; \
else \
echo "An error should be shown above!"; \
echo "You need X to bytecompile the $@ module, do this manually after"; \
@@ -72,13 +67,11 @@
#
# Targets that may bytecompile without X
#
-.PHONY emacs tcsh rtin bash elm:
emacs tcsh rtin bash elm:
@@TCLSH@ $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile
#
# Clean
#
-.PHONY: clean
clean :
@echo Nothing to do
|