head	1.3;
access;
symbols;
locks; strict;
comment	@# @;


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

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

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


desc
@new for .55
@


1.3
log
@fakeroot
@
text
@#
# $Id: Makefile,v 1.2 1997/02/15 16:07:22 morgan Exp morgan $
#
# This Makefile controls a build process of $(TITLE) module for
# Linux-PAM. You should not modify this Makefile (unless you know
# what you are doing!).
#
# $Log: Makefile,v $
# Revision 1.2  1997/02/15 16:07:22  morgan
# optional libpwdb compilation
#
# Revision 1.1  1997/01/04 20:32:52  morgan
# Initial revision
#
#
#
# Created by Andrew Morgan <morgan@@parc.power.net> 1996/12/8
#

TITLE=pam_mail

ifeq ($(HAVE_PWDBLIB),yes)
CFLAGS += -DWANT_PWDB
EXTRALIB = -lpwdb
endif

#

LIBSRC = $(TITLE).c
LIBOBJ = $(TITLE).o
LIBOBJD = $(addprefix dynamic/,$(LIBOBJ))
LIBOBJS = $(addprefix static/,$(LIBOBJ))

dynamic/%.o : %.c
	$(CC) $(CFLAGS) $(DYNAMIC) $(CPPFLAGS) $(TARGET_ARCH) -c $< -o $@@

static/%.o : %.c
	$(CC) $(CFLAGS) $(STATIC) $(CPPFLAGS) $(TARGET_ARCH) -c $< -o $@@


ifdef DYNAMIC
LIBSHARED = $(TITLE).so
endif

ifdef STATIC
LIBSTATIC = lib$(TITLE).o
endif

####################### don't edit below #######################

dummy:

	@@echo "**** This is not a top-level Makefile "
	exit

all: dirs $(LIBSHARED) $(LIBSTATIC) register

dirs:
ifdef DYNAMIC
	$(MKDIR) ./dynamic
endif
ifdef STATIC
	$(MKDIR) ./static
endif

register:
ifdef STATIC
	( cd .. ; ./register_static $(TITLE) $(TITLE)/$(LIBSTATIC) )
endif

ifdef DYNAMIC
$(LIBOBJD): $(LIBSRC)

$(LIBSHARED):	$(LIBOBJD)
	$(LD_D) -o $@@ $(LIBOBJD) $(EXTRALIB)
endif

ifdef STATIC
$(LIBOBJS): $(LIBSRC)

$(LIBSTATIC): $(LIBOBJS)
	$(LD) -r -o $@@ $(LIBOBJS) $(EXTRALIB)
endif

install: all
	$(MKDIR) $(FAKEROOT)$(SECUREDIR)
ifdef DYNAMIC
	$(INSTALL) -m 644 $(LIBSHARED) $(FAKEROOT)$(SECUREDIR)
endif

remove:
	rm -f $(FAKEROOT)$(SECUREDIR)/$(TITLE).so

clean:
	rm -f $(LIBOBJD) $(LIBOBJS) core *~

extraclean: clean
	rm -f *.a *.o *.so *.bak dynamic/* static/*

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

@


1.2
log
@optional libpwdb compilation
@
text
@d2 1
a2 1
# $Id: Makefile,v 1.1 1997/01/04 20:32:52 morgan Exp morgan $
d9 3
d86 1
a86 1
	$(MKDIR) $(SECUREDIR)
d88 1
a88 1
	$(INSTALL) -m 644 $(LIBSHARED) $(SECUREDIR)
d92 1
a92 1
	rm -f $(SECUREDIR)/$(TITLE).so
@


1.1
log
@Initial revision
@
text
@d2 1
a2 1
# $Id: Makefile,v 1.1 1996/12/01 03:17:57 morgan Exp $
d9 3
d19 5
d72 1
a72 1
	$(LD_D) -o $@@ $(LIBOBJD)
d79 1
a79 1
	$(LD) -r -o $@@ $(LIBOBJS)
@
