aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile51
1 files changed, 51 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..c448273
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,51 @@
+
+VERSION = 1.13.3
+NAME = userdrake
+BINNAME = userdrake
+
+PREFIX = /
+DATADIR = $(PREFIX)/usr/share
+ICONSDIR = $(DATADIR)/icons
+SBINDIR = $(PREFIX)/usr/sbin
+BINDIR = $(PREFIX)/usr/bin
+SYSCONFDIR = $(PREFIX)/etc/sysconfig
+SBINREL = ../sbin
+
+SUBDIRS = po
+localedir = $(prefix)/usr/share/locale
+
+all: userdrake
+ for d in $(SUBDIRS); do ( cd $$d ; make $@ ) ; done
+
+clean:
+ $(MAKE) -C po $@
+ rm -f core .#*[0-9]
+ for d in $(SUBDIRS); do ( cd $$d ; make $@ ) ; done
+
+install: all
+ $(MAKE) -C po $@
+ install -d $(PREFIX)/{/etc/sysconfig,usr/{bin,sbin,share/$(NAME)/pixmaps,share/icons/{mini,large}}}
+ install -m755 $(NAME) $(SBINDIR)/
+ ln -sf $(SBINREL)/userdrake $(BINDIR)/userdrake
+ ln -sf $(SBINREL)/userdrake $(SBINDIR)/drakuser
+ install -d $(SYSCONFDIR)
+ install -m644 userdrake.prefs $(SYSCONFDIR)/userdrake
+ install -m644 pixmaps/*.png $(DATADIR)/$(NAME)/pixmaps
+ install -m644 icons/$(NAME)16.png $(ICONSDIR)/mini/$(NAME).png
+ install -m644 icons/$(NAME)32.png $(ICONSDIR)/$(NAME).png
+ install -m644 icons/$(NAME)48.png $(ICONSDIR)/large/$(NAME).png
+ install -m644 icons/*selec*.png $(DATADIR)/$(NAME)/pixmaps
+ for d in $(SUBDIRS); do ( cd $$d ; make $@ ) ; done
+
+dis: clean
+ rm -rf $(NAME)-$(VERSION) ../$(NAME)-$(VERSION).tar*
+ svn export -q -rBASE . $(NAME)-$(VERSION)
+ find $(NAME)-$(VERSION) -name .svnignore |xargs rm -rf
+ tar cfY ../$(NAME)-$(VERSION).tar.lzma $(NAME)-$(VERSION)
+ rm -rf $(NAME)-$(VERSION)
+
+.PHONY: ChangeLog
+ChangeLog:
+ svn2cl --accum --authors ../../soft/common/username.xml
+ rm -f *.bak
+ svn commit -m "Generated by svn2cl the `LC_TIME=C date '+%d_%b'`" ChangeLog