summaryrefslogtreecommitdiffstats
path: root/Makefile.in
blob: b8984fdabc4da38c5c090d38b4ffbe7518265fe4 (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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
DISTNAME = $(pkgname)-$(pkgversion)
INSTALL = install
INSTALL_PROGRAM = $(INSTALL) -m 755
INSTALL_SCRIPT = $(INSTALL) -m 755
INSTALL_DATA = $(INSTALL) -m 644
INSTALL_DIR = $(INSTALL) -d -m 755
SHELL = /bin/sh
CAN_RUN_INSTALLINFO = $(SHELL) -c "install-info --version" > /dev/null 2>&1

objs = arg_parser.o rc.o zutils.o \
       zcat.o zcmp.o zdiff.o zgrep.o ztest.o zupdate.o
zcat_objs = arg_parser.o rc.o zutils.o zcat.o
zcmp_objs = arg_parser.o rc.o zutils.o zcmp.o
zdiff_objs = arg_parser.o rc.o zutils.o zdiff.o
zgrep_objs = arg_parser.o rc.o zutils.o zgrep.o
ztest_objs = arg_parser.o rc.o zutils.o ztest.o
zupdate_objs = arg_parser.o rc.o zupdate.o
programs = zcat zcmp zdiff zgrep ztest zupdate
scripts = zegrep zfgrep


.PHONY : all install install-bin install-info install-man \
         install-strip install-compress install-strip-compress \
         install-bin-strip install-info-compress install-man-compress \
         uninstall uninstall-bin uninstall-info uninstall-man \
         doc info man check dist clean distclean

all : $(programs) $(scripts)

zcat : $(zcat_objs)
	$(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(zcat_objs)

zcmp : $(zcmp_objs)
	$(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(zcmp_objs)

zdiff : $(zdiff_objs)
	$(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(zdiff_objs)

zegrep : zegrep.in
	cat $(VPATH)/zegrep.in > $@
	chmod a+x zegrep

zfgrep : zfgrep.in
	cat $(VPATH)/zfgrep.in > $@
	chmod a+x zfgrep

zgrep : $(zgrep_objs)
	$(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(zgrep_objs)

ztest : $(ztest_objs)
	$(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(ztest_objs)

zupdate : $(zupdate_objs)
	$(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(zupdate_objs)

rc.o : rc.cc
	$(CXX) $(CPPFLAGS) $(CXXFLAGS) -DPROGVERSION=\"$(pkgversion)\" -DSYSCONFDIR=\"$(sysconfdir)\" -c -o $@ $<

zdiff.o : zdiff.cc
	$(CXX) $(CPPFLAGS) $(CXXFLAGS) -DDIFF=\"$(DIFF)\" -c -o $@ $<

zgrep.o : zgrep.cc
	$(CXX) $(CPPFLAGS) $(CXXFLAGS) -DGREP=\"$(GREP)\" -c -o $@ $<

%.o : %.cc
	$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c -o $@ $<

# prevent 'make' from trying to remake source files
$(VPATH)/configure $(VPATH)/Makefile.in $(VPATH)/doc/$(pkgname).texi : ;
%.h %.cc : ;

$(objs)      : Makefile
$(scripts)   : Makefile
arg_parser.o : arg_parser.h
rc.o         : arg_parser.h rc.h
zcat.o       : arg_parser.h rc.h zutils.h recursive.cc zcatgrep.cc
zcmp.o       : arg_parser.h rc.h zutils.h zcmpdiff.cc
zdiff.o      : arg_parser.h rc.h zutils.h zcmpdiff.cc
zgrep.o      : arg_parser.h rc.h zutils.h recursive.cc zcatgrep.cc
ztest.o      : arg_parser.h rc.h zutils.h recursive.cc
zupdate.o    : arg_parser.h rc.h recursive.cc
zutils.o     : rc.h zutils.h

doc : info man

info : $(VPATH)/doc/$(pkgname).info

$(VPATH)/doc/$(pkgname).info : $(VPATH)/doc/$(pkgname).texi
	cd $(VPATH)/doc && $(MAKEINFO) $(pkgname).texi

man : $(VPATH)/doc/zcat.1 $(VPATH)/doc/zcmp.1 $(VPATH)/doc/zdiff.1 \
      $(VPATH)/doc/zgrep.1 $(VPATH)/doc/ztest.1 $(VPATH)/doc/zupdate.1

$(VPATH)/doc/zcat.1 : zcat
	help2man -n 'decompress and concatenate files to standard output' \
	  -o $@ --info-page=$(pkgname) ./zcat

$(VPATH)/doc/zcmp.1 : zcmp
	help2man -n 'decompress and compare two files byte by byte' \
	  -o $@ --info-page=$(pkgname) ./zcmp

$(VPATH)/doc/zdiff.1 : zdiff
	help2man -n 'decompress and compare two files line by line' \
	  -o $@ --info-page=$(pkgname) ./zdiff

$(VPATH)/doc/zgrep.1 : zgrep
	help2man -n 'search compressed files for a regular expression' \
	  -o $@ --info-page=$(pkgname) ./zgrep

$(VPATH)/doc/ztest.1 : ztest
	help2man -n 'check the integrity of compressed files' \
	  -o $@ --info-page=$(pkgname) ./ztest

$(VPATH)/doc/zupdate.1 : zupdate
	help2man -n 'recompress bzip2, gzip, xz, zstd files to lzip format' \
	  -o $@ --info-page=$(pkgname) ./zupdate

Makefile : $(VPATH)/configure $(VPATH)/Makefile.in
	./config.status

check : all
	@$(VPATH)/testsuite/check.sh $(VPATH)/testsuite $(pkgversion)

install : install-bin install-info install-man
install-strip : install-bin-strip install-info install-man
install-compress : install-bin install-info-compress install-man-compress
install-strip-compress : install-bin-strip install-info-compress install-man-compress

install-bin : all
	if [ ! -d "$(DESTDIR)$(bindir)" ] ; then $(INSTALL_DIR) "$(DESTDIR)$(bindir)" ; fi
	$(INSTALL_PROGRAM) ./zcat "$(DESTDIR)$(bindir)/zcat"
	$(INSTALL_PROGRAM) ./zcmp "$(DESTDIR)$(bindir)/zcmp"
	$(INSTALL_PROGRAM) ./zdiff "$(DESTDIR)$(bindir)/zdiff"
	$(INSTALL_SCRIPT) ./zegrep "$(DESTDIR)$(bindir)/zegrep"
	$(INSTALL_SCRIPT) ./zfgrep "$(DESTDIR)$(bindir)/zfgrep"
	$(INSTALL_PROGRAM) ./zgrep "$(DESTDIR)$(bindir)/zgrep"
	$(INSTALL_PROGRAM) ./ztest "$(DESTDIR)$(bindir)/ztest"
	$(INSTALL_PROGRAM) ./zupdate "$(DESTDIR)$(bindir)/zupdate"
	if [ ! -e "$(DESTDIR)$(sysconfdir)/$(pkgname).conf" ] ; then \
	  if [ ! -d "$(DESTDIR)$(sysconfdir)" ] ; then $(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)" ; fi ; \
	  $(INSTALL_DATA) $(VPATH)/$(pkgname).conf "$(DESTDIR)$(sysconfdir)/$(pkgname).conf" ; \
	fi

install-bin-strip : all
	$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install-bin

install-info :
	if [ ! -d "$(DESTDIR)$(infodir)" ] ; then $(INSTALL_DIR) "$(DESTDIR)$(infodir)" ; fi
	-rm -f "$(DESTDIR)$(infodir)/$(pkgname).info"*
	$(INSTALL_DATA) $(VPATH)/doc/$(pkgname).info "$(DESTDIR)$(infodir)/$(pkgname).info"
	-if $(CAN_RUN_INSTALLINFO) ; then \
	  install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$(pkgname).info" ; \
	fi

install-info-compress : install-info
	lzip -v -9 "$(DESTDIR)$(infodir)/$(pkgname).info"

install-man :
	if [ ! -d "$(DESTDIR)$(mandir)/man1" ] ; then $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" ; fi
	-rm -f "$(DESTDIR)$(mandir)/man1/zcat.1"*
	-rm -f "$(DESTDIR)$(mandir)/man1/zcmp.1"*
	-rm -f "$(DESTDIR)$(mandir)/man1/zdiff.1"*
	-rm -f "$(DESTDIR)$(mandir)/man1/zgrep.1"*
	-rm -f "$(DESTDIR)$(mandir)/man1/ztest.1"*
	-rm -f "$(DESTDIR)$(mandir)/man1/zupdate.1"*
	$(INSTALL_DATA) $(VPATH)/doc/zcat.1 "$(DESTDIR)$(mandir)/man1/zcat.1"
	$(INSTALL_DATA) $(VPATH)/doc/zcmp.1 "$(DESTDIR)$(mandir)/man1/zcmp.1"
	$(INSTALL_DATA) $(VPATH)/doc/zdiff.1 "$(DESTDIR)$(mandir)/man1/zdiff.1"
	$(INSTALL_DATA) $(VPATH)/doc/zgrep.1 "$(DESTDIR)$(mandir)/man1/zgrep.1"
	$(INSTALL_DATA) $(VPATH)/doc/ztest.1 "$(DESTDIR)$(mandir)/man1/ztest.1"
	$(INSTALL_DATA) $(VPATH)/doc/zupdate.1 "$(DESTDIR)$(mandir)/man1/zupdate.1"

install-man-compress : install-man
	lzip -v -9 "$(DESTDIR)$(mandir)/man1/zcat.1"
	lzip -v -9 "$(DESTDIR)$(mandir)/man1/zcmp.1"
	lzip -v -9 "$(DESTDIR)$(mandir)/man1/zdiff.1"
	lzip -v -9 "$(DESTDIR)$(mandir)/man1/zgrep.1"
	lzip -v -9 "$(DESTDIR)$(mandir)/man1/ztest.1"
	lzip -v -9 "$(DESTDIR)$(mandir)/man1/zupdate.1"

uninstall : uninstall-man uninstall-info uninstall-bin

uninstall-bin :
	-rm -f "$(DESTDIR)$(bindir)/zcat"
	-rm -f "$(DESTDIR)$(bindir)/zcmp"
	-rm -f "$(DESTDIR)$(bindir)/zdiff"
	-rm -f "$(DESTDIR)$(bindir)/zegrep"
	-rm -f "$(DESTDIR)$(bindir)/zfgrep"
	-rm -f "$(DESTDIR)$(bindir)/zgrep"
	-rm -f "$(DESTDIR)$(bindir)/ztest"
	-rm -f "$(DESTDIR)$(bindir)/zupdate"
	-rm -f "$(DESTDIR)$(sysconfdir)/$(pkgname).conf"

uninstall-info :
	-if $(CAN_RUN_INSTALLINFO) ; then \
	  install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$(pkgname).info" ; \
	fi
	-rm -f "$(DESTDIR)$(infodir)/$(pkgname).info"*

uninstall-man :
	-rm -f "$(DESTDIR)$(mandir)/man1/zcat.1"*
	-rm -f "$(DESTDIR)$(mandir)/man1/zcmp.1"*
	-rm -f "$(DESTDIR)$(mandir)/man1/zdiff.1"*
	-rm -f "$(DESTDIR)$(mandir)/man1/zgrep.1"*
	-rm -f "$(DESTDIR)$(mandir)/man1/ztest.1"*
	-rm -f "$(DESTDIR)$(mandir)/man1/zupdate.1"*

dist : doc
	ln -sf $(VPATH) $(DISTNAME)
	tar -Hustar --owner=root --group=root -cvf $(DISTNAME).tar \
	  $(DISTNAME)/AUTHORS \
	  $(DISTNAME)/COPYING \
	  $(DISTNAME)/ChangeLog \
	  $(DISTNAME)/INSTALL \
	  $(DISTNAME)/Makefile.in \
	  $(DISTNAME)/NEWS \
	  $(DISTNAME)/README \
	  $(DISTNAME)/configure \
	  $(DISTNAME)/doc/*.1 \
	  $(DISTNAME)/doc/$(pkgname).info \
	  $(DISTNAME)/doc/$(pkgname).texi \
	  $(DISTNAME)/$(pkgname).conf \
	  $(DISTNAME)/*.h \
	  $(DISTNAME)/*.cc \
	  $(DISTNAME)/z*.in \
	  $(DISTNAME)/testsuite/check.sh \
	  $(DISTNAME)/testsuite/test.txt \
	  $(DISTNAME)/testsuite/test.txt.tar \
	  $(DISTNAME)/testsuite/zcat_vs.dat \
	  $(DISTNAME)/testsuite/test_bad_crc.lz \
	  $(DISTNAME)/testsuite/zero_bad_crc.lz \
	  $(DISTNAME)/testsuite/zero_bad_crc.gz
	rm -f $(DISTNAME)
	lzip -v -9 $(DISTNAME).tar

clean :
	-rm -f $(programs) $(scripts) $(objs)

distclean : clean
	-rm -f Makefile config.status *.tar *.tar.lz