/*----------------------------------------------------------------------------
--  Name:     Imakefile
--  Project:  Xdiary
--
--  Description:
--    ndbm Imakefile for the XDiary project.
--
--  Filename:         Imakefile
--
--  Authors:          Roger Larsson, Ulrika Bornetun
--  Creation date:    1995-02-03
--
--
--  (C) Copyright Ulrika Bornetun, Roger Larsson (1995)
--      All rights reserved
--
--  Permission to use, copy, modify, and distribute this software and its
--  documentation for any purpose and without fee is hereby granted,
--  provided that the above copyright notice appear in all copies. Ulrika
--  Bornetun and Roger Larsson make no representations about the usability
--  of this software for any purpose. It is provided "as is" without express
--  or implied warranty.
-----------------------------------------------------------------------------*/

/* SCCSID = @(#) Module: Imakefile, Version: 1.4, Date: 95/06/25 16:51:29 */


/*----------------------------------------------------------------------------
--
-- Set Xdiary-specific variables. This must come first.
--
-----------------------------------------------------------------------------*/

#include "../XDiary.tmpl"


/*----------------------------------------------------------------------------
--
-- Source files to compile.
--
-----------------------------------------------------------------------------*/

SRCS =  \
	xdndbm.c

OBJS =  \
	xdndbm.o


/*----------------------------------------------------------------------------
--
-- Library definitions.
--
-----------------------------------------------------------------------------*/

#define DoNormalLib  1
#define LibName      Xdndbm

#include <Library.tmpl>

LibraryObjectRule()
NormalLibraryTarget(Xdndbm,$(OBJS))


/*----------------------------------------------------------------------------
--
-- For makedepend.
--
-----------------------------------------------------------------------------*/

DependTarget()

