/*
 * @(#)Imakefile	6.22 00/01/10
 *
 * Imakefile for xmcd
 *
 *	xmcd - Motif(tm) CD Audio Player
 *
 *   Copyright (C) 1993-2000  Ti Kan
 *   E-mail: ti@amb.org
 *
 *   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.
 *
 */

/*
 * If your local X configuration supports Motif correctly, the
 * following LOCAL_LIBRARIES= declaration should work just fine.
 * If it fails, try uncommenting the #include lines below.  If that
 * still fails, then substitute the LOCAL_LIBRARIES= line with
 * one of the these:
 *
 * LOCAL_LIBRARIES= $(XMLIB) $(XTOOLLIB) $(XLIB)
 *
 * or,
 *
 * LOCAL_LIBRARIES= -lXm -lXt -lX11
 *
 */

/*
 * #include "Motif.tmpl"
 * #include "Motif.rules"
 */
LOCAL_LIBRARIES= XmClientLibs

#if defined(FreeBSDArchitecture)
.if exists(/usr/include/camlib.h)
LOCAL_LIBRARIES+= -lcam
.endif
#endif


/**** Optional defines:  Change as you see fit. *****************************
 *
 * -DBSDCOMPAT
 *	Compiling under BSD-derived or BSD-like OS
 *
 * -DHAS_SETEUID
 *	The system supports the geteuid(2), seteuid(2), getegid(2) and
 *	setegid(2) system calls.
 *
 * -DNO_STDLIB_H
 *	The system does not support <stdlib.h>
 *
 * -DNO_UNISTD_H
 *	The system does not support <unistd.h>
 *
 * -DEDITRES
 *	Enable editres(1) support.  This feature is only effective
 *	when compiling under X11R5 or later.
 */
#if defined(SYSTYPE_BSD43) || defined(BSD43) || defined(BSD) || \
    defined(FreeBSDArchitecture) || defined(NetBSDArchitecture) || \
    defined(OpenBSDArchitecture) || defined(__bsdi__) || \
    defined(OsfArchitecture) || defined(sony_news) || \
    (defined(SunArchitecture) && OSMajorVersion == 4)
DEFINES= -DBSDCOMPAT -DHAS_SETEUID
#else
#if defined(LinuxArchitecture) || defined(SunArchitecture) || \
    defined(AIXArchitecture) || defined(UltrixArchitecture) || \
    defined(USLArchitecture) || defined(SVR4Architecture) || SystemV4
DEFINES= -DHAS_SETEUID
#else	/* all others */
DEFINES=
#endif	/* Linux Sun AIX Ultrix USL SVR4 */
#endif	/* BSD Osf sony_news Sun4 */


/*
 * Add local include path
 */
INCLUDES=-I..


/*
 * C Source files
 */
SRCS=	callback.c \
	cdfunc.c \
	command.c \
	dbprog.c \
	geom.c \
	help.c \
	hotkey.c \
	main.c \
	widget.c \
	wwwwarp.c

/*
 * Objects
 */
#if defined(__QNX__)
OBJS=	callback.o \
	cdfunc.o \
	command.o \
	dbprog.o \
	geom.o \
	help.o \
	hotkey.o \
	main.o \
	widget.o \
	wwwwarp.o \
	../common_d/util3r.lib \
	../cddb_d/cddb3r.lib \
	../libdi_d/di3r.lib
#else
OBJS=	callback.o \
	cdfunc.o \
	command.o \
	dbprog.o \
	geom.o \
	help.o \
	hotkey.o \
	main.o \
	widget.o \
	wwwwarp.o \
	../common_d/libutil.a \
	../cddb_d/libcddb.a \
	../libdi_d/libdi.a
#endif


/*
 * Build rule for the main module
 */
#ifdef InstallProgram
#undef InstallProgram
#define InstallProgram(program, dest)
#endif
#ifdef InstallManPage
#undef InstallManPage
#define InstallManPage(program, dir)
#endif
ComplexProgramTarget(xmcd)


