/*
 *   @(#)$Id: Imakefile,v 1.3 1996/12/13 23:35:22 steve Exp steve $
 *
 *   Imakefile for cddbd
 *
 *   cddbd - CD Database Protocol Server
 *
 *   Copyright (C) 1996  Steve Scherf
 *   Email: steve@moonsoft.com
 *   Moondog Software Productions - makers of fine public domain software.
 *
 *   Based on the original source by Ti Kan.
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */


/*
 *    Optional defines - change as you see fit.
 *
 *    -DBSDCOMPAT
 *        Compiling under BSD-derived or BSD-like OS
 *
 *    -DNO_STDLIB_H
 *        The system does not support <stdlib.h>
 */

#if defined(SYSTYPE_BSD43) || defined(BSD43) || defined(BSD) || \
    defined(FreeBSDArchitecture) || defined(NetBSDArchitecture) || \
    defined(__bsdi__) || defined(OsfArchitecture) || defined(sony_news) || \
    (defined(SunArchitecture) && OSMajorVersion == 4)
DEFINES= -DBSDCOMPAT
#else
DEFINES=
#endif


/* C Source files. */
SRCS=	 cddbd.c db.c fuzzy.c help.c inet.c mail.c xmit.c

/* Objects to build the server. */
OBJS=	 cddbd.o db.o fuzzy.o help.o inet.o mail.o xmit.o

/* Build rule for the server. */
#ifdef InstallProgram
#undef InstallProgram
#define InstallProgram(program, dest)
#endif
ComplexProgramTarget(cddbd)
