exe.mk
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:3k
源码类别:

Windows CE

开发平台:

C/C++

  1. #  FLAC - Free Lossless Audio Codec
  2. #  Copyright (C) 2001,2002,2003,2004,2005  Josh Coalson
  3. #
  4. #  This file is part the FLAC project.  FLAC is comprised of several
  5. #  components distributed under difference licenses.  The codec libraries
  6. #  are distributed under Xiph.Org's BSD-like license (see the file
  7. #  COPYING.Xiph in this distribution).  All other programs, libraries, and
  8. #  plugins are distributed under the GPL (see COPYING.GPL).  The documentation
  9. #  is distributed under the Gnu FDL (see COPYING.FDL).  Each file in the
  10. #  FLAC distribution contains at the top the terms under which it may be
  11. #  distributed.
  12. #
  13. #  Since this particular file is relevant to all components of FLAC,
  14. #  it may be distributed under the Xiph.Org license, which is the least
  15. #  restrictive of those mentioned above.  See the file COPYING.Xiph in this
  16. #  distribution.
  17. #
  18. # GNU makefile fragment for building an executable
  19. #
  20. include $(topdir)/build/config.mk
  21. ifeq ($(DARWIN_BUILD),yes)
  22. CC          = cc
  23. CCC         = c++
  24. else
  25. CC          = gcc
  26. CCC         = g++
  27. endif
  28. NASM        = nasm
  29. LINK        = $(CC) $(LINKAGE)
  30. OBJPATH     = $(topdir)/obj
  31. BINPATH     = $(OBJPATH)/$(BUILD)/bin
  32. LIBPATH     = $(OBJPATH)/$(BUILD)/lib
  33. DEBUG_BINPATH   = $(OBJPATH)/debug/bin
  34. DEBUG_LIBPATH   = $(OBJPATH)/debug/lib
  35. RELEASE_BINPATH = $(OBJPATH)/release/bin
  36. RELEASE_LIBPATH = $(OBJPATH)/release/lib
  37. PROGRAM         = $(BINPATH)/$(PROGRAM_NAME)
  38. DEBUG_PROGRAM   = $(DEBUG_BINPATH)/$(PROGRAM_NAME)
  39. RELEASE_PROGRAM = $(RELEASE_BINPATH)/$(PROGRAM_NAME)
  40. debug   : CFLAGS = -g -O0 -DDEBUG $(CONFIG_CFLAGS) $(DEBUG_CFLAGS) -Wall -W -DVERSION=$(VERSION) $(DEFINES) $(INCLUDES)
  41. valgrind: CFLAGS = -g -O0 -DDEBUG $(CONFIG_CFLAGS) $(DEBUG_CFLAGS) -DFLAC__VALGRIND_TESTING -Wall -W -DVERSION=$(VERSION) $(DEFINES) $(INCLUDES)
  42. release : CFLAGS = -O3 -fomit-frame-pointer -funroll-loops -finline-functions -DNDEBUG $(CONFIG_CFLAGS) $(RELEASE_CFLAGS) -Wall -W -Winline -DFLaC__INLINE=__inline__ -DVERSION=$(VERSION) $(DEFINES) $(INCLUDES)
  43. LFLAGS  = -L$(LIBPATH)
  44. DEBUG_OBJS = $(SRCS_C:%.c=%.debug.o) $(SRCS_CC:%.cc=%.debug.o) $(SRCS_CPP:%.cpp=%.debug.o) $(SRCS_NASM:%.nasm=%.debug.o)
  45. RELEASE_OBJS = $(SRCS_C:%.c=%.release.o) $(SRCS_CC:%.cc=%.release.o) $(SRCS_CPP:%.cpp=%.release.o) $(SRCS_NASM:%.nasm=%.release.o)
  46. debug   : $(DEBUG_PROGRAM)
  47. valgrind: $(DEBUG_PROGRAM)
  48. release : $(RELEASE_PROGRAM)
  49. # by default on OS X we link with static libs as much as possible
  50. $(DEBUG_PROGRAM) : $(DEBUG_OBJS)
  51. ifeq ($(DARWIN_BUILD),yes)
  52. $(LINK) -o $@ $(DEBUG_OBJS) $(EXPLICIT_LIBS)
  53. else
  54. $(LINK) -o $@ $(DEBUG_OBJS) $(LFLAGS) $(LIBS)
  55. endif
  56. $(RELEASE_PROGRAM) : $(RELEASE_OBJS)
  57. ifeq ($(DARWIN_BUILD),yes)
  58. $(LINK) -o $@ $(RELEASE_OBJS) $(EXPLICIT_LIBS)
  59. else
  60. $(LINK) -o $@ $(RELEASE_OBJS) $(LFLAGS) $(LIBS)
  61. endif
  62. %.debug.o %.release.o : %.c
  63. $(CC) $(CFLAGS) -c $< -o $@
  64. %.debug.o %.release.o : %.cc
  65. $(CCC) $(CFLAGS) -c $< -o $@
  66. %.debug.o %.release.o : %.cpp
  67. $(CCC) $(CFLAGS) -c $< -o $@
  68. %.debug.i %.release.i : %.c
  69. $(CC) $(CFLAGS) -E $< -o $@
  70. %.debug.i %.release.i : %.cc
  71. $(CCC) $(CFLAGS) -E $< -o $@
  72. %.debug.i %.release.i : %.cpp
  73. $(CCC) $(CFLAGS) -E $< -o $@
  74. %.debug.o %.release.o : %.nasm
  75. $(NASM) -f elf -d OBJ_FORMAT_elf -i ia32/ $< -o $@
  76. .PHONY : clean
  77. clean :
  78. -rm -f $(DEBUG_OBJS) $(RELEASE_OBJS) $(OBJPATH)/*/bin/$(PROGRAM_NAME)
  79. .PHONY : depend
  80. depend:
  81. makedepend -fMakefile.lite -- $(CFLAGS) $(INCLUDES) -- *.c *.cc *.cpp