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


1.4
date	99.02.19.11.43.36;	author saw;	state Rel;
branches;
next	1.3;

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

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

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


desc
@@


1.4
log
@Extraclean fix.
@
text
@#
# $Id: Makefile,v 1.3 1998/12/07 11:26:56 saw Exp $
#

SRCS = $(wildcard *.c)
OBJS = $(SRCS:.c=.o)

include ../../Rules.make

all: lib$(TAGDIR).a

include .depend

%.o: %.c
	$(CC) -c -o $(@@) $(CFLAGS) $(<)

.depend:
	$(CC) -M $(CFLAGS) $(SRCS) >$(@@)

../../Rules.make:
	$(MAKE) -C $(@@D) $(@@F)

lib$(TAGDIR).a: $(OBJS)
	ar rcs $(@@) $(^)

install:

remove:

clean:
	rm -f core *.a *.so *.o *~

extraclean: clean
	rm -f .#* .depend

.PHONY: all install remove clean extraclean
@


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
@d2 1
a2 1
# $Id: Makefile,v 1.2 1998/11/25 12:33:32 saw Exp $
d34 1
@


1.2
log
@More restructurization fixes.
Wtmp was splitted into PAM/PNIAM dependent and independent parts.
@
text
@d2 1
a2 1
# $Id: Makefile,v 1.1 1998/11/25 10:15:51 saw Exp $
d8 1
a8 2
dummy:
	@@echo "*** This is not a top level Makefile!"
d20 3
d35 1
a35 3
.EXPORT_ALL_VARIABLES:

.PHONY: dummy all install remove clean extraclean
@


1.1
log
@Code restructurization to separate PAM/PNIAM independent
helper functions.
@
text
@d2 1
a2 1
# $Id: Makefile,v 1.4 1998/11/24 14:08:46 agalat Exp $
d13 2
d16 4
a19 1
	$(CC) -c -L. -o $(@@) $(CFLAGS) $(<)
@
