Makefile.in
上传用户:njqiyou
上传日期:2007-01-08
资源大小:574k
文件大小:1k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. ############################################################################
  2. ## ISO MPEG Audio Subgroup Software Simulation Group (1996)
  3. ## ISO 13818-3 MPEG-2 Audio Decoder - Lower Sampling Frequency Extension
  4. ##
  5. ## $Id: Makefile.in,v 1.2 1996/02/14 05:18:05 rowlands Exp $
  6. ##
  7. ## Makefile for encoder. Requies GNU make.
  8. ##
  9. ## $Log: Makefile.in,v $
  10. ## Revision 1.2  1996/02/14 05:18:05  rowlands
  11. ## Cleanups.
  12. ##
  13. ## Revision 1.1  1996/02/14 04:04:23  rowlands
  14. ## Initial revision
  15. ##
  16. ## Received from Mike Coleman
  17. ############################################################################
  18. CC = gcc
  19. c_sources = 
  20. common.c 
  21. encode.c 
  22. formatBitstream.c 
  23. huffman.c 
  24. ieeefloat.c 
  25. l3bitstream.c 
  26. l3psy.c 
  27. loop.c 
  28. mdct.c 
  29. musicin.c 
  30. portableio.c 
  31. psy.c 
  32. reservoir.c 
  33. subs.c 
  34. tonal.c
  35. OBJ = $(c_sources:.c=.o)
  36. DEP = $(c_sources:.c=.d)
  37. NINT_SWITCH = @NINTSW@
  38. CC_SWITCHES = -g -O -DUNIX -DBS_FORMAT=BINARY $(NINT_SWITCH) -DNDEBUG
  39. PGM = encode
  40. LIBS = @LIBS@ @MATHLIBS@
  41. %.o: %.c 
  42. $(CC) $(CC_SWITCHES) -c $< -o $@
  43. %.d: %.c
  44. $(SHELL) -ec '$(CC) -M $(CC_SWITCHES) $< | sed '''s/$*.o/& $@/g''' > $@'
  45. $(PGM): $(OBJ) Makefile
  46. $(CC) -o $(PGM) $(OBJ) $(LIBS)
  47. clean:
  48. -rm $(OBJ) $(DEP)
  49. tags: TAGS
  50. TAGS: ${c_sources}
  51. etags -T ${c_sources}
  52. -include $(DEP)