From 44acb4196a6e0bed7de44292804c34b7722b6b3e Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Sat, 13 Jul 2013 11:26:12 +0000 Subject: Add stylesheet and mageia navigation bar --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 82f2fc3..2908ee6 100644 --- a/Makefile +++ b/Makefile @@ -3,17 +3,21 @@ VERSION=0.4 BINFILES=mkpeople CFGFILES=mgapeople.conf TMPLFILES=tmpl/*.html tmpl/*.txt +STATICFILES=static/* sysconfdir=/etc bindir=/usr/bin sharedir=/usr/share tmpldir=$(sharedir)/mgapeople/tmpl +staticdir=$(sharedir)/mgapeople/static install: - install -d $(DESTDIR)$(tmpldir) $(DESTDIR)$(bindir) $(DESTDIR)$(sysconfdir) + install -d $(DESTDIR)$(tmpldir) $(DESTDIR)$(bindir) \ + $(DESTDIR)$(sysconfdir) $(DESTDIR)$(staticdir) install -m 755 $(BINFILES) $(DESTDIR)$(bindir) install -m 644 $(CFGFILES) $(DESTDIR)$(sysconfdir) install -m 644 $(TMPLFILES) $(DESTDIR)$(tmpldir) + install -m 644 $(STATICFILES) $(DESTDIR)$(staticdir) tar: git archive --format=tar --prefix mgapeople-$(VERSION)/ HEAD | xz > mgapeople-$(VERSION).tar.xz -- cgit v1.2.1