summaryrefslogtreecommitdiff
path: root/3rd-party/zisofs_tools/Makefile
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2012-12-31 05:04:42 +0400
committerIgor Pashev <pashev.igor@gmail.com>2012-12-31 05:04:42 +0400
commit71dc8760ff4de5f365330d1bc571d934deb54af9 (patch)
tree7346d42a282562a3937d82307012b5857d642ce6 /3rd-party/zisofs_tools/Makefile
downloadcdrkit-71dc8760ff4de5f365330d1bc571d934deb54af9.tar.gz
Imported Upstream version 1.1.11upstream/1.1.11upstream
Diffstat (limited to '3rd-party/zisofs_tools/Makefile')
-rw-r--r--3rd-party/zisofs_tools/Makefile96
1 files changed, 96 insertions, 0 deletions
diff --git a/3rd-party/zisofs_tools/Makefile b/3rd-party/zisofs_tools/Makefile
new file mode 100644
index 0000000..d70dec6
--- /dev/null
+++ b/3rd-party/zisofs_tools/Makefile
@@ -0,0 +1,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