summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authoralexl <alexl>2004-02-11 17:11:50 +0000
committeralexl <alexl>2004-02-11 17:11:50 +0000
commit484571c69ac28e568f5033cee09cc1d307d6a55c (patch)
treec3e4729234947015ce2439e7bbb08e8a4de18234 /Makefile.in
parent5298c6192541da4c4fa3974edff7c6e6d0ec13ac (diff)
2004-02-11 Alexander Larsson <alexl@redhat.com>
* Makefile: * Makefile.in: * configure.ac: * install-sh: Convert to autoconf Patch from James Henstridge
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in46
1 files changed, 46 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
new file mode 100644
index 0000000..4c10008
--- /dev/null
+++ b/Makefile.in
@@ -0,0 +1,46 @@
+PACKAGE = @PACKAGE_TARNAME@
+VERSION = @PACKAGE_VERSION@
+prefix = @prefix@
+datadir = @datadir@
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+
+distdir = $(PACKAGE)-$(VERSION)
+FILES = README Makefile.in configure.ac configure install-sh index.theme ChangeLog
+
+ICON_SIZES = 16x16 22x22 32x32 36x36 48x48 64x64 72x72 96x96 \
+ 128x128 192x192 scalable
+ICON_CONTEXTS = actions apps devices filesystems mimetypes
+
+all:
+ @:
+
+install:
+ mkdir -p $(DESTDIR)$(datadir)/icons/hicolor
+ $(INSTALL_DATA) index.theme $(DESTDIR)$(datadir)/icons/hicolor
+ for dir in $(ICON_SIZES); do \
+ for ctxt in $(ICON_CONTEXTS); do \
+ mkdir -p $(DESTDIR)$(datadir)/icons/hicolor/$$dir/$$ctxt; \
+ done \
+ done
+
+dist:
+ rm -rf $(distdir)
+ mkdir $(distdir)
+ cp $(FILES) $(distdir)
+ tar czvf $(distdir).tar.gz $(distdir)
+ rm -rf $(distdir)
+
+tag:
+ cvs tag DEFAULT_ICON_THEME_`echo $(VERSION)|sed "s/\./_/"`
+
+# cause rebuilds
+Makefile: Makefile.in config.status
+ ./config.status Makefile
+configure: configure.ac
+ autoconf
+config.status: configure
+ ./configure.status --recheck
+
+.PHONY: all install dist tag
+