head	1.4;
access;
symbols
	Real-Release-0-59:1.4
	Release-0-59:1.4
	pniam_change:1.4.0.2
	Release-0-58:1.3
	broken-signals-0-57:1.3.0.2
	Release-0-56-last:1.3
	Release-0-57:1.3;
locks; strict;
comment	@# @;


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

1.3
date	97.02.24.05.58.52;	author morgan;	state Exp;
branches;
next	1.2;

1.2
date	96.05.05.18.40.05;	author morgan;	state Exp;
branches;
next	1.1;

1.1
date	96.05.02.05.45.15;	author morgan;	state Exp;
branches;
next	;


desc
@@


1.4
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
@#
# $Id: Makefile,v 1.3 1997/02/24 05:58:52 morgan Exp $
#

PROGS =
PROGSUID = passwd

include ../../Application.make
@


1.3
log
@strip binaries before installing
@
text
@d2 1
a2 1
# $Id: Makefile,v 1.2 1996/05/05 18:40:05 morgan Exp morgan $
a4 4
dummy:

	@@echo	"*** This is not a top level Makefile!"

d8 1
a8 28
all: $(SRCS)
	for i in $(PROGS) $(PROGSUID); do \
		if [ ! -x "$$i" ] || [ "$$i".c -nt "$$i" ]; then \
			$(CC) $(CFLAGS) -o $$i $$i.c $(LOADLIBES) ; \
		fi ; \
	done

install: all
	if [ -n "$(PROGS)" ]; then \
		strip $(PROGS) ; \
		cp $(PROGS) ../../bin ; \
	fi
	if [ -n "$(PROGSUID)" ]; then \
		strip $(PROGSUID) ; \
		install -m 4555 -o root -g bin $(PROGSUID) ../../bin ; \
	fi

remove:
	cd ../../bin ; rm -f $(PROGS) $(PROGSUID)

clean:
	rm -f *.a *.so *.o *~ $(PROGS) $(PROGSUID)

extraclean:
	@@make clean
	rm -f *.a *.out *.o *.so
	for x in $(PROGS) $(PROGSUID) ; do rm -f ../../bin/$$x ; done

@


1.2
log
@deleted clean from remove
@
text
@d2 1
a2 1
# $Id: Makefile,v 1.1 1996/05/02 05:45:15 morgan Exp morgan $
d20 4
a23 1
	if [ -n "$(PROGS)" ]; then cp $(PROGS) ../../bin ; fi
d25 3
a27 1
		install -m 4555 -o root -g bin $(PROGSUID) ../../bin ; fi
@


1.1
log
@Initial revision
@
text
@d2 1
a2 1
# $Id$
d24 1
a24 1
remove: clean
@
