home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / sound / players / maplay_t.z / maplay_t / Makefile < prev    next >
Encoding:
Makefile  |  1994-02-21  |  1.4 KB  |  55 lines

  1.  
  2. #
  3. #  @(#) Makefile 1.4, last edit: 2/17/94 14:39:25
  4. #  @(#) Copyright (C) 1993, 1994 Tobias Bading (bading@cs.tu-berlin.de)
  5. #  @(#) Berlin University of Technology
  6. #
  7. #  This program is free software; you can redistribute it and/or modify
  8. #  it under the terms of the GNU General Public License as published by
  9. #  the Free Software Foundation; either version 2 of the License, or
  10. #  (at your option) any later version.
  11. #
  12. #  This program is distributed in the hope that it will be useful,
  13. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. #  GNU General Public License for more details.
  16. #
  17. #  You should have received a copy of the GNU General Public License
  18. #  along with this program; if not, write to the Free Software
  19. #  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. #
  21.  
  22.  
  23. CFLAGS = $(COMPILERFLAGS)
  24. # debugging: -ggdb -DDEBUG
  25. # profiling: -pg
  26.  
  27.  
  28. OBJS = maplay.o ibitstream.o header.o scalefactors.o subband_layer_1.o subband_layer_2.o \
  29.        synthesis_filter.o obuffer.o crc.o
  30.  
  31.  
  32. install:
  33.         @./configuration.sh
  34.  
  35. all:        maplay
  36.  
  37. maplay:        $(OBJS)
  38.         $(COMPILER) $(CFLAGS) $(OBJS) -o $@ $(LIBRARIES) -lm
  39.  
  40. .c.o:
  41.         $(COMPILER) -c $(CFLAGS) $(INCLUDEDIRS) $< -o $@
  42.  
  43. depend:
  44.         makedepend $(INCLUDEDIRS) -w100 *.c
  45.  
  46. clean:
  47.         -rm maplay makedepend_done audio_includes.h
  48.         -rm *.o
  49.  
  50. tags:
  51.         etags *.c *.h
  52.  
  53.  
  54. # DO NOT DELETE THIS LINE -- make depend depends on it.
  55.