# Makefile for openmamba-release # Copyright (c) 2015 by Silvan Calarco # Released under the terms of the GNU GPLv3 license PACKAGE=openmamba-release distdir = $(PACKAGE)-$(VERSION) dist_archive = $(distdir).tar.bz2 include VERSION # System locations prefix = /usr exec_prefix = ${prefix} sysconfdir = /etc sbindir = /sbin bindir = ${exec_prefix}/bin mandir = ${prefix}/usr/share/man datadir = ${prefix}/share iconsdir = ${datadir}/icons/hicolor initrddir = ${sysconfdir}/rc.d/init.d sysconfigdir= ${sysconfdir}/sysconfig localesdir = ${datadir}/locale xdgautostartdir = ${sysconfdir}/xdg/autostart srcdir = . DESTDIR = INSTALL = /usr/bin/install INSTALL_PROGRAM = ${INSTALL} -m 755 INSTALL_DATA = ${INSTALL} -m 644 INSTALL_DIR = ${INSTALL} -d -m 755 INSTALL_SCRIPT = ${INSTALL_PROGRAM} all: install-dirs: @$(INSTALL_DIR) $(DESTDIR)$(bindir) install-data: install-programs: install-x86_64: install: install-dirs install-data install-programs clean: rm -f $(dist_archive) dist: clean @git clean -f @git log > ChangeLog @mkdir /tmp/$(distdir) @cp -a * /tmp/$(distdir)/ @rm -f $(dist_archive);\ tar cf - -C /tmp $(distdir) | bzip2 -9 -c > $(dist_archive) @rm -rf /tmp/$(distdir) @echo "file \`$(dist_archive)' created" dist-rpm: dist @rpm_sourcedir=`rpm --eval=%{_sourcedir}`;\ mv -f $(PACKAGE)-$(VERSION).tar.bz2 $$rpm_sourcedir;\ echo "File $$rpm_sourcedir/$(PACKAGE)-$(VERSION).tar.bz2 created."