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