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

  1. #
  2. #   @(#)Makefile.std    5.4 95/01/27
  3. #
  4. #   Makefile for cda
  5. #
  6. #    cda - Command-line CD Audio Player
  7. #
  8. #   NOTE: You should use this only if you don't have imake!
  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. include ../make.inc
  29.  
  30. PROG=    cda
  31.  
  32. SRCS=    cda.c \
  33.     visual.c
  34.  
  35. OBJS=    cda.o \
  36.     visual.o \
  37.     ../common.d/libutil.a \
  38.     ../libdi.d/libdi.a
  39.  
  40. # Uncomment the following to build cda without visual mode support
  41. # DEFINES=-DNOVISUAL
  42.  
  43. all: $(PROG)
  44.  
  45. $(PROG): $(OBJS)
  46.     $(CC) -o $@ $(OBJS) $(CURSESLIB)
  47.  
  48. install:
  49.  
  50.