mirror of https://github.com/sipwise/heartbeat.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.0 KiB
65 lines
2.0 KiB
# $Id: Makefile.am,v 1.9 2006/04/13 09:54:19 andrew Exp $
|
|
#
|
|
# Open-HA "port" Makefile for FreeBSD
|
|
#
|
|
# Copyright (C) 2005 Matthew Soffen
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
# Overview of principle:
|
|
# 1. "make install" as a pseudo-install to a temporary location $(TMPINSTDIR)
|
|
# 2. "pkgmk" from whatever is in $(TMPINSTDIR) into a pkg area $(PKGDIR)
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
EXTRA_DIST = \
|
|
portMakefile.in \
|
|
heartbeat/pkg-deinstall.in \
|
|
heartbeat/pkg-descr.in \
|
|
heartbeat/pkg-install.in \
|
|
heartbeat/pkg-plist.in
|
|
|
|
CLEANFILES =
|
|
|
|
DISTCLEANFILES = $(PKGINFO)
|
|
|
|
PKGNAME = OPENHA
|
|
|
|
TARFILE = @TARFILE@
|
|
MD5 = @MD5@
|
|
GZIP_PROG = @GZIP_PROG@
|
|
|
|
# A pseudo-install directory, so that we know what files are generated.
|
|
# This allows libtool to maintain its flexibility.
|
|
TMPINSTDIR = tmpinst
|
|
|
|
# Main target
|
|
portfile:
|
|
rm -f $(TARFILE) heartbeat.tar heartbeat.tar.gz
|
|
ln -s ../$(TARFILE) $(TARFILE)
|
|
$(MD5) $(TARFILE) > heartbeat/distinfo
|
|
# Create the DistInfo file for the port file.
|
|
ls -l ../$(TARFILE) | $(AWK) '{print "SIZE \($(TARFILE)\) = "$$5}' >> heartbeat/distinfo
|
|
cp portMakefile heartbeat/Makefile
|
|
$(TAR) -cvf heartbeat.tar heartbeat/Makefile heartbeat/distinfo heartbeat/pkg-deinstall heartbeat/pkg-descr heartbeat/pkg-install heartbeat/pkg-plist
|
|
$(GZIP_PROG) heartbeat.tar
|
|
|
|
|
|
clean:
|
|
rm -f $(TARFILE) heartbeat.tar port/distinfo port/Makefile
|
|
|
|
clean-local:
|
|
rm -rf $(TMPINSTDIR) $(PKGDIR)
|