home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xmcd-1.4 / common.d / Imakefile < prev    next >
Encoding:
Makefile  |  1995-05-10  |  2.0 KB  |  80 lines

  1. /*
  2.  * @(#)Imakefile    5.4 95/02/06
  3.  *
  4.  * Imakefile for libutil (common utility routines for xmcd, cda and libdi)
  5.  *
  6.  *    xmcd  - Motif(tm) CD Audio Player
  7.  *    cda   - Command-line CD Audio Player
  8.  *    libdi - CD Audio Player Device Interface Library
  9.  *
  10.  *   Copyright (C) 1995  Ti Kan
  11.  *   E-mail: ti@amb.org
  12.  *
  13.  *   This program is free software; you can redistribute it and/or modify
  14.  *   it under the terms of the GNU General Public License as published by
  15.  *   the Free Software Foundation; either version 2 of the License, or
  16.  *   (at your option) any later version.
  17.  *
  18.  *   This program is distributed in the hope that it will be useful,
  19.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  *   GNU General Public License for more details.
  22.  *
  23.  *   You should have received a copy of the GNU General Public License
  24.  *   along with this program; if not, write to the Free Software
  25.  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  26.  *
  27.  */
  28.  
  29.  
  30. /*
  31.  * If your local X configuration is broken, you may need to muck with
  32.  * the following RANLIB= lines.
  33.  * On most System V platforms RANLIB should be set to /bin/true.
  34.  * On BSD-derived systems RANLIB should be set to ranlib.
  35.  */
  36. #if defined(DoRanlibCmd) && (DoRanlibCmd == NO)
  37. RANLIB= /bin/true
  38. #endif
  39.  
  40.  
  41. /**** Optional defines:  Change as you see fit. *****************************
  42.  *
  43.  * -DBSDCOMPAT
  44.  *    Compiling under BSD-derived or BSD-like OS
  45.  *
  46.  * -DNO_STDLIB_H
  47.  *    The system does not support <stdlib.h>
  48.  */
  49. #if defined(SYSTYPE_BSD43) || defined(BSD43) || defined(BSD) || \
  50.     defined(FreeBSDArchitecture) || defined(OsfArchitecture) || \
  51.     (defined(SunArchitecture) && OSMajorVersion == 4)
  52. DEFINES= -DBSDCOMPAT
  53. #else
  54. DEFINES=
  55. #endif
  56.  
  57. /*
  58.  * Add local include path
  59.  */
  60. INCLUDES=-I..
  61.  
  62. /*
  63.  * C Source files
  64.  */
  65. SRCS=    util.c
  66.  
  67. /*
  68.  * Objects files
  69.  */
  70. OBJS=    util.o
  71.  
  72.  
  73. /*
  74.  * Build rule for the Device Interface Library
  75.  */
  76. NormalLibraryTarget(util,$(OBJS))
  77. DependTarget()
  78.  
  79.  
  80.