blob: c2c2dbc4cafd58cc38e73a726f40720553e6f539 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
############################################################
#
# $Id : Makefile.in 5.15 2005/01/22 $
#
# xlockmore Makefile.in for autoconf (UNIX/VMS X11 support)
############################################################
SUBDIRS = xlock modes/glx modes xmlock xglock
MAKE_SUBDIR = for dir in $(SUBDIRS) ; do ( cd $$dir ; $(MAKE) $@ ) ; done
# convenient not to use configure just to clean
MAKEIN_SUBDIR = for dir in $(SUBDIRS) ; do ( cd $$dir ; sed s/\@MODULES\@/\#/ Makefile.in > Makefile ; $(MAKE) $@ ) ; done
all :
@$(MAKE_SUBDIR)
# this tells GNU make not to export variables into the environment
# But other makes do not understand its significance, so it must
# not be the first target in the file. So it is here, before
# any variables are created, but after the default target
.NOEXPORT :
SHELL = /bin/sh
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
TAR = tar
RM = rm -f
VER = xlockmore
DISTVER = xlockmore-4.20
install :
@$(MAKE_SUBDIR)
install-program :
@$(MAKE_SUBDIR)
install-man :
@$(MAKE_SUBDIR)
install-ad :
@$(MAKE_SUBDIR)
uninstall :
@$(MAKE_SUBDIR)
uninstall-program :
@$(MAKE_SUBDIR)
uninstall-man :
@$(MAKE_SUBDIR)
install.program : install-program
install.man : install-man
install.ad : install-ad
uninstall.program : uninstall-program
uninstall.man : uninstall-man
uninstall.ad : uninstall-ad
depend :
@$(MAKE_SUBDIR)
distdepend :
@$(MAKE_SUBDIR)
lint :
@$(MAKE_SUBDIR)
xrdb :
@$(MAKE_SUBDIR)
man :
@$(MAKE_SUBDIR)
html :
@$(MAKE_SUBDIR)
hlp :
@$(MAKE_SUBDIR)
clean :
$(RM) core *~ *% *.bak *.orig *.rej make.log MakeOut *.patch
@$(MAKE_SUBDIR)
distclean :
$(RM) core *~ *% *.bak *.orig *.rej make.log MakeOut *.patch
$(RM) Makefile config.status config.cache config.log config.h
rm -rf autom4te.cache
make -f Makefile.win32 clean
@$(MAKEIN_SUBDIR)
cd etc/genlauncher ; make distclean
Makefile : Makefile.in config.status
$(SHELL) config.status
config.status : configure
$(SHELL) config.status --recheck
#configure : configure.in
# enable this rule if you want autoconf to be executed automatically when
# configure.in is changed. This is commented out, since patching might give
# configure.in a newer timestamp than configure and not everybody has autoconf
# cd $(srcdir); autoconf
clean.all : distclean
tar : distclean
cd .. ; $(TAR) cvf $(VER).tar $(VER)/*
bzip2 : tar
cd .. ; bzip2 -f $(VER).tar
gzip : tar
cd .. ; gzip -best -f $(VER).tar
compress : tar
cd .. ; compress -f $(VER).tar
dist : bzip2
tbz : tar
cd .. ; bzip2 -c $(VER).tar > `echo $(VER) | cut -c1-8`.tbz ; \
$(RM) $(VER).tar
tgz : tar
cd .. ; gzip -best -c $(VER).tar > `echo $(VER) | cut -c1-8`.tgz ; \
$(RM) $(VER).tar
read :
more README
|