head	1.2;
access;
symbols
	morgan_0_75:1.1.1.2
	pam_unpruned:1.1.1.1
	morgan_0_65:1.1.1.1
	MORGAN:1.1.1;
locks; strict;
comment	@# @;


1.2
date	98.11.25.19.45.51;	author jdp;	state dead;
branches;
next	1.1;

1.1
date	98.11.18.01.16.19;	author jdp;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	98.11.18.01.16.19;	author jdp;	state Exp;
branches;
next	1.1.1.2;

1.1.1.2
date	2001.05.03.09.36.04;	author markm;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Remove files that we don't use and are unlikely to use.  You can
still get them with "cvs upd -r pam_unpruned" if you want to look at
them.
@
text
@#
# $Id: Makefile,v 1.10 1996/11/10 19:50:59 morgan Exp $
#

dummy:

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

PROGS = blank xsh check_user
SRCS = blank.c xsh.c check_user.c

# have removed the following pair since they no longer conform to
# any recognized conventions: vpass test
# ditto: vpass.c test.c

PROGSUID =

all: $(PROGS)

check_user: check_user.o
	$(CC) $(CFLAGS) -o $@@ $< $(LOADLIBES)

blank: blank.o
	$(CC) $(CFLAGS) -o $@@ $< $(LOADLIBES)

xsh: xsh.o
	$(CC) $(CFLAGS) -o $@@ $< $(LOADLIBES)

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

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

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

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


1.1
log
@Initial revision
@
text
@@


1.1.1.1
log
@Initial import of virgin Linux-PAM 0.65, slightly stripped down.
@
text
@@


1.1.1.2
log
@Vendor import Linux PAM 0.75
@
text
@d2 1
a2 1
# $Id: Makefile,v 1.4 2001/02/10 07:17:53 agmorgan Exp $
d5 3
a7 1
include ../Make.Rules
d11 5
a17 18
ifeq ($(WITH_LIBDEBUG),yes)
 LIBSUFFIX=d
else
 LIBSUFFIX=
endif

CFLAGS += -I../libpam_misc/include -I../libpamc/include

LOADLIBES = -L../libpam -L../libpamc -L../libpam_misc \
		-lpam$(LIBSUFFIX) -lpam_misc$(LIBSUFFIX)

ifeq ($(STATIC_LIBPAM),yes)
  ifneq ($(DYNAMIC),)
    CFLAGS += $(CC_STATIC)
    LOADLIBES += $(LIBDL)
  endif
endif

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

# note, the programs are test programs, they should not be
# installed on your system!

d32 4
a35 1
		$(INSTALL) -m 4555 $(PROGSUID) ../bin ; fi
d39 3
@

