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

mpeg/mp3

开发平台:

C/C++

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