blob: d70dec61916351e3720cbd3482dc4198710d7e52 (
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
|
## -----------------------------------------------------------------------
##
## Copyright 2001 H. Peter Anvin - All Rights Reserved
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA 02139,
## USA; either version 2 of the License, or (at your option) any later
## version; incorporated herein by reference.
##
## -----------------------------------------------------------------------
##
## Makefile for mkzftree
##
## mkzftree mirrors a tree in a form suitable for "mkisofs -z".
##
-include MCONFIG
include MRULES
PROGS = mkzftree
MAN1PAGES = mkzftree.1
OBJS = mkzftree.o walk.o workers.o util.o hash.o iso9660.o copytime.o \
compress.o uncompress.o
all: $(PROGS)
spec: zisofs-tools.spec
clean:
rm -f *.o *.i *.s version.h $(PROGS)
distclean: clean
rm -f MCONFIG config.status config.log config.h *~ \#*
rm -f core *.orig *.rej
rm -rf *.cache
release:
$(MAKE) configure
$(MAKE) spec
$(MAKE) distclean
mkzftree: $(OBJS)
$(CC) $(LDFLAGS) -o mkzftree $(OBJS) $(LIBS)
spotless: distclean
rm -f configure config.h.in zisofs-tools.spec
install: all
mkdir -p $(INSTALLROOT)$(bindir)
$(INSTALL_PROGRAM) $(PROGS) $(INSTALLROOT)$(bindir)
mkdir -p $(INSTALLROOT)$(mandir)/man1
$(INSTALL_DATA) $(MAN1PAGES) $(INSTALLROOT)$(mandir)/man1
config: MCONFIG
MCONFIG: configure MCONFIG.in config.h.in
./configure
config.h: MCONFIG
: Generated by side effect
config.h.in: configure.in
rm -f config.h.in
autoheader
configure: configure.in aclocal.m4
autoconf
rm -f MCONFIG config.cache config.log config.status config.h
#
# Version header
#
VERSION = $(shell cat version)
version.h: version
echo "#define ZISOFS_TOOLS_VERSION \"$(VERSION)\"" > version.h
zisofs-tools.spec: zisofs-tools.spec.in version
sed -e 's/@@VERSION@@/$(VERSION)/g' < zisofs-tools.spec.in > $@
#
# Dependencies
#
mkzftree.o: mkzftree.c mkzftree.h config.h version.h
workers.o: workers.c mkzftree.h config.h
compress.o: compress.c mkzftree.h config.h iso9660.h
copytime.o: copytime.c mkzftree.h config.h
hash.o: hash.c mkzftree.h config.h
iso9660.o: iso9660.c iso9660.h
uncompress.o: uncompress.c mkzftree.h config.h iso9660.h
util.o: util.c mkzftree.h config.h
walk.o: walk.c mkzftree.h config.h
workers.o: workers.c mkzftree.h config.h
|