## -*-makefile-*- ## ## $Id: Makefile.am,v 1.1 1999/10/23 10:58:49 mdw Exp $ ## ## Makefile for PGP pixie ## ## (c) 1999 Mark Wooding ## ##----- Licensing notice ---------------------------------------------------- ## ## PGP pixie 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. ## ## PGP pixie 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 PGP pixie; if not, write to the Free Software Foundation, ## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.am,v $ ## Revision 1.1 1999/10/23 10:58:49 mdw ## Initial revision ## AUTOMAKE_OPTIONS = foreign bin_PROGRAMS = pixie bin_SCRIPTS = pgp-pixie man_MANS = pixie.1 pixie_SOURCES = pixie.c mdwopt.c mdwopt.h EXTRA_DIST = pixie.1 install-exec-hook: pixie="$(bindir)/`echo pixie|sed $(transform)`"; \ chown root $$pixie && chmod 4755 $$pixie || {\ echo ">>>"; echo ">>> You might want to make $$pixie"; \ echo ">>> setuid-root";\ echo ">>>"; } ##----- That's all, folks ---------------------------------------------------