head	1.3;
access;
symbols
	Real-Release-0-59:1.3
	Release-0-59:1.3
	pniam_change:1.3.0.2;
locks; strict;
comment	@# @;


1.3
date	98.12.07.11.26.56;	author saw;	state Rel;
branches;
next	1.2;

1.2
date	98.11.25.10.15.49;	author saw;	state Exp;
branches;
next	1.1;

1.1
date	98.11.23.16.29.50;	author saw;	state Exp;
branches;
next	;


desc
@@


1.3
log
@ - Makefiles were fixed to allow separate building in each directory.
 - .EXPORT_ALL_VARIABLES were removed from Makefiles.  All Makefiles
   include Rules.make with all necessary definitions.
 - _POSIX_SOURCE was changed to _GNU_SOURCE to see vhangup() and
   other non-posix functions.
 - configure script was fixed to handle --with and --without
   arguments properly.
 - Release number was changed.  I may forget to do it later.
@
text
@#
# $Id: Makefile,v 1.2 1998/11/25 10:15:49 saw Exp $
#

DIRS = lib su login passwd

all install:
	set -e ; for i in $(DIRS) ; do $(MAKE) -C "$${i}" $(@@) ; done

remove clean extraclean:
	for i in $(DIRS) ; do $(MAKE) -C "$${i}" $(@@) ; done

.PHONY: all install remove clean extraclean
@


1.2
log
@Code restructurization to separate PAM/PNIAM independent
helper functions.
@
text
@d2 1
a2 1
# $Id: Makefile,v 1.1 1998/11/23 16:29:50 saw Exp $
a6 3
dummy:
	@@echo "*** This is not a top level Makefile!"

d13 1
a13 3
.EXPORT_ALL_VARIABLE:

.PHONY: dummy all install remove clean extraclean
@


1.1
log
@Major making process reorganization.  A simple configure script
was written.  Makefiles were greatly simplified.  The common
make code was moved to Application.make include file.
@
text
@d2 1
a2 1
# $Id$
d5 1
a5 1
DIRS = su login passwd
@
