/*
 * @(#)Imakefile	6.60 02/11/17
 *
 * Imakefile for cda
 *
 *	cda - Command-line CD Audio Player/Ripper
 *
 *   Copyright (C) 1993-1999  Ti Kan
 *   E-mail: xmcd@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.
 *
 */


/**** 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>
 *
 * -DNO_UNISTD_H
 *	The system does not support <unistd.h>
 *
 * -DNOVISUAL
 *	Build cda without the visual (curses) mode support
 *
 * -DNO_FCHMOD
 *	The system does not support the fchmod(2) system call.
 *
 * -DUSE_TERMIOS
 * -DUSE_TERMIO
 * -DUSE_SGTTY
 *	One of these should be defined for tty mode control
 */
#if defined(FreeBSDArchitecture) || defined(OpenBSDArchitecture) || \
    defined(OsfArchitecture) || defined(OSF1Architecture) || \
    (defined(SunArchitecture) && OSMajorVersion == 4)
DEFINES= -DBSDCOMPAT -DUSE_TERMIOS
#else
#if defined(NetBSDArchitecture)
DEFINES= -DBSDCOMPAT -DNOVISUAL -DUSE_TERMIOS
#else
#if defined(BSDOSArchitecture)
.if exists(/usr/include/ncurses.h)
DEFINES= -DBSDCOMPAT -DUSE_TERMIOS
.else
DEFINES= -DBSDCOMPAT -DNOVISUAL -DUSE_TERMIOS
.endif
#else
#if defined(sony_news)
DEFINES= -DBSDCOMPAT -DNOVISUAL -DUSE_SGTTY
#else
#if defined(SYSTYPE_BSD43) || defined(BSD43) || defined(BSD)
DEFINES= -DBSDCOMPAT -DUSE_SGTTY
#else
#if defined(XmacIIServer)
DEFINES= -DUSG -DUSE_TERMIO
#else
#if defined(SCOArchitecture) || defined(i386ScoArchitecture)
#if defined(i386Sco325Architecture) || OSMajorVersion >= 5
DEFINES= -DUSE_TERMIO
#else
DEFINES= -DNO_FCHMOD -DUSE_TERMIO
#endif
#else	/* all others */
DEFINES= -DUSE_TERMIOS
#endif	/* SCO */
#endif	/* XmacIIServer */
#endif	/* BSD* */
#endif	/* sony_news */
#endif	/* BSD/OS */
#endif	/* NetBSD */
#endif	/* FreeBSD OpenBSD OSF1 Sun4 */


/*
 * Add standard and local include paths
 */
#if (defined(SunArchitecture) && OSMajorVersion == 4)
STD_INCLUDES=-I/usr/5include
#else
#if defined(LinuxArchitecture)
STD_INCLUDES=-I/usr/include/ncurses
#else	/* all others */
STD_INCLUDES=
#endif	/* LinuxArchitecture */
#endif	/* SunArchitecture */

INCLUDES=-I..


/*
 * Add needed libraries
 */
CDDBLIB= -L../cddb_d -lcddb
LOCAL_LIBDIR= -L/usr/local/lib
VORBLIB= -lvorbisenc -lvorbis -logg

/* Add the following if -DUSE_LIBMP3LAME is defined in cdda_d/Imakefile.
 * LAMELIB= -lmp3lame
 */


#if defined(LinuxArchitecture)
/* On Linux the -lc is needed to prevent potential internal symbol
 * name clashes between libc and libstdc++.
 */
SYS_LIBRARIES= -lc $(CDDBLIB) $(LOCAL_LIBDIR) $(LAMELIB) $(VORBLIB) -lm

/* The following conditional is GNU-make specific */
alsalib_incl=	$(wildcard /usr/include/alsa/asoundlib.h)
alsalib_incl+=	$(wildcard /usr/local/include/alsa/asoundlib.h)

ifneq "$(strip $(alsalib_incl))" ""
SYS_LIBRARIES+= -lasound
endif
#else
#if defined(OsfArchitecture) || defined(OSF1Architecture)
SYS_LIBRARIES= $(CDDBLIB) $(LOCAL_LIBDIR) $(LAMELIB) $(VORBLIB) -L/usr/ccs/lib -lmme -liconv -lrt -lm
#else
#if defined(AIXArchitecture)
SYS_LIBRARIES= $(CDDBLIB) $(LOCAL_LIBDIR) $(LAMELIB) $(VORBLIB) -liconv -lm
#else
#if defined(SGIArchitecture)
SYS_LIBRARIES= $(CDDBLIB) $(LOCAL_LIBDIR) $(LAMELIB) $(VORBLIB) -laudio -lm
#else
SYS_LIBRARIES= $(CDDBLIB) $(LOCAL_LIBDIR) $(LAMELIB) $(VORBLIB) -lm
#endif	/* SGI Irix */
#endif	/* AIX */
#endif  /* OSF1 */
#endif	/* Linux */

#if (defined(SunArchitecture) && OSMajorVersion == 4)
LOCAL_LIBRARIES=-L/usr/5lib -lcurses
#else
#if defined(LinuxArchitecture)
LOCAL_LIBRARIES=-lncurses
#else
#if defined(FreeBSDArchitecture)
LOCAL_LIBRARIES=-lncurses -lmytinfo
.if exists(/usr/include/camlib.h)
LOCAL_LIBRARIES+= -lcam
.endif
#else
#if defined(NetBSDArchitecture)
LOCAL_LIBRARIES=
#else
#if defined(BSDOSArchitecture)
.if exists(/usr/include/ncurses.h)
LOCAL_LIBRARIES=-lncurses
.else
LOCAL_LIBRARIES=
.endif
#else
#if defined(OpenBSDArchitecture)
LOCAL_LIBRARIES=-lncurses -ltermlib
#else
#if defined(UltrixArchitecture)
LOCAL_LIBRARIES=-lcursesX
#else
#if defined(SNIArchitecture) 
LOCAL_LIBRARIES=/usr/ccs/lib/libcurses.a
#else
#if defined(__QNX__)
LOCAL_LIBRARIES=-lncurses
#else
LOCAL_LIBRARIES=-lcurses
#endif	/* __QNX__ */
#endif	/* SINIX */
#endif	/* ultrix */
#endif	/* OpenBSDArchitecture */
#endif	/* BSD/OS */
#endif	/* NetBSDArchitecture */
#endif	/* FreeBSDArchitecture */
#endif	/* LinuxArchitecture OpenBSDArchitecture */
#endif	/* SunArchitecture */


/*
 * C Source files
 */
SRCS=	cda.c \
	userreg.c \
	visual.c


/*
 * Objects to build cda
 */
#if defined(__QNX__)
OBJS=	cda.o \
	userreg.o \
	visual.o \
	../cdinfo_d/cdinfo3r.lib \
	../cddb_d/cddbkey3r.lib \
	../libdi_d/di3r.lib \
	../cdda_d/cdda3r.lib \
	../common_d/util3r.lib
#else
OBJS=	cda.o \
	userreg.o \
	visual.o \
	../cdinfo_d/libcdinfo.a \
	../cddb_d/libcddbkey.a \
	../libdi_d/libdi.a \
	../cdda_d/libcdda.a \
	../common_d/libutil.a
#endif


/*
 * Build rule for cda
 */
#ifdef InstallProgram
#undef InstallProgram
#define InstallProgram(program, dest)
#endif
#ifdef InstallManPage
#undef InstallManPage
#define InstallManPage(program, dir)
#endif
ComplexProgramTarget(cda)


