/*----------------------------------------------------------------------------
--  Name:     Imakefile
--  Project:  Xdiary
--
--  Description:
--    Tools 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.3, Date: 95/06/25 16:48:47 */


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

#include "../XDiary.tmpl"


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

SRCS =  \
	DirList.c \
	DirScan.c \
	LstLinked.c \
	Message.c \
	SigHandler.c \
	Scramble.c \
	System.c \
	TimDate.c

OBJS =  \
	DirList.o \
	DirScan.o \
	LstLinked.o \
	Message.o \
	SigHandler.o \
	Scramble.o \
	System.o \
	TimDate.o


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

#define DoNormalLib  1
#define LibName      Tools

#include <Library.tmpl>

LibraryObjectRule()
NormalLibraryTarget(Tools,$(OBJS))


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

Makefiles::
	touch System.c

DependTarget()

