diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2015-10-05 00:14:21 +0200 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2015-10-05 00:14:21 +0200 |
commit | 9d2cf7a61afa89139a9d189e11027abbd36b63f9 (patch) | |
tree | 00852919610f84a4a72d1326b4d9e0640d8b4f0c /icon-themes | |
parent | 2b383d19e716863134087fe83d0aa5ba156006bd (diff) |
remove now unneeded Makefile
Change-Id: I2cbabf64791b6f14182b4ad4b11ffd08000f1291
Diffstat (limited to 'icon-themes')
-rw-r--r-- | icon-themes/elementary/Makefile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/icon-themes/elementary/Makefile b/icon-themes/elementary/Makefile deleted file mode 100644 index 3876d4f2124d..000000000000 --- a/icon-themes/elementary/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -SHELL = /bin/sh - -TARGET = images_elementary.zip -DESTDIR = -PREFIX = $(DESTDIR)/usr -SHAREDIR = $(PREFIX)/share/libreoffice/share/config -LIBDIR = $(PREFIX)/lib/libreoffice/share/config -LIBLINK = ../../../../share/libreoffice/share/config - -all: images_elementary.zip - -images_elementary.zip: - (cd src; zip -r ../$(TARGET) *) - -install: images_elementary.zip - install -d $(SHAREDIR) - install -d $(LIBDIR) - install -m 644 -D $(TARGET) $(SHAREDIR)/$(TARGET) - (cd $(LIBDIR); ln -sf $(LIBLINK)/$(TARGET) $(TARGET)) - -uninstall: - -rm $(LIBDIR)/$(TARGET) - -rm $(SHAREDIR)/$(TARGET) - -clean: - -rm -f images_elementary.zip |