home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xmcd-1.4 / make.inc < prev    next >
Encoding:
Text File  |  1995-05-10  |  1.5 KB  |  51 lines

  1. #
  2. #   @(#)make.inc    5.3 94/12/28
  3. #
  4. #   make.inc 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. #   NOTE: You should use this only if you don't have imake!
  11. #
  12. #   Copyright (C) 1995  Ti Kan
  13. #   E-mail: ti@amb.org
  14. #
  15. #   This program is free software; you can redistribute it and/or modify
  16. #   it under the terms of the GNU General Public License as published by
  17. #   the Free Software Foundation; either version 2 of the License, or
  18. #   (at your option) any later version.
  19. #
  20. #   This program is distributed in the hope that it will be useful,
  21. #   but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23. #   GNU General Public License for more details.
  24. #
  25. #   You should have received a copy of the GNU General Public License
  26. #   along with this program; if not, write to the Free Software
  27. #   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  28. #
  29.  
  30. #
  31. # Modify these as you see fit.  You will most certainly need to
  32. # make some changes here in order to successfully build xmcd/cda
  33. # on your platform.
  34. #
  35. SHELL=        /bin/sh
  36. MAKE=        make
  37. CC=        cc
  38. RANLIB=        /bin/true
  39. AR=        ar cq
  40. RM=        rm -f
  41. CFLAGS=        -O $(DEFINES) $(INCDIRS) $(ARCH)
  42. ARCH=        -DSVR4 -Di386
  43. INCDIRS=    -I.. -I/usr/include -I/usr/X/include
  44. XLIBS=        -L/usr/X/lib -lXm -lXt -lX11 -lnsl -lsocket -lgen
  45. CURSESLIB=    -lcurses
  46. BINDIR=        /usr/bin/X11
  47. LIBDIR=        /usr/lib/X11
  48. MANDIR=        /usr/man/man1
  49. MANSUF=        .1
  50.  
  51.