mirror of https://github.com/xiph/flac
92 lines
2.5 KiB
Makefile
92 lines
2.5 KiB
Makefile
# FLAC - Free Lossless Audio Codec
|
|
# Copyright (C) 2001,2002 Josh Coalson
|
|
#
|
|
# This program is part of FLAC; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
# GNU makefile fragment for building a library
|
|
#
|
|
|
|
ifeq ($(DARWIN_BUILD),yes)
|
|
CC = cc
|
|
CCC = c++
|
|
else
|
|
CC = gcc
|
|
CCC = g++
|
|
endif
|
|
NASM = nasm
|
|
LINK = ar cru
|
|
LIBPATH = ../../obj/lib
|
|
ifeq ($(DARWIN_BUILD),yes)
|
|
STATIC_LIB_SUFFIX = a
|
|
DYNAMIC_LIB_SUFFIX = dylib
|
|
else
|
|
STATIC_LIB_SUFFIX = a
|
|
DYNAMIC_LIB_SUFFIX = so
|
|
endif
|
|
STATIC_LIB = $(LIBPATH)/$(LIB_NAME).$(STATIC_LIB_SUFFIX)
|
|
DYNAMIC_LIB = $(LIBPATH)/$(LIB_NAME).$(DYNAMIC_LIB_SUFFIX)
|
|
ifeq ($(DARWIN_BUILD),yes)
|
|
LINKD = $(CC) -dynamiclib -flat_namespace -undefined suppress -install_name $(DYNAMIC_LIB)
|
|
else
|
|
LINKD = $(CC) -shared
|
|
endif
|
|
|
|
all : release
|
|
|
|
include ../../build/config.mk
|
|
|
|
debug : CFLAGS = -g -O0 -DDEBUG $(DEBUG_CFLAGS) -Wall -W -DVERSION=$(VERSION) $(DEFINES) $(INCLUDES)
|
|
release : CFLAGS = -O3 -fomit-frame-pointer -funroll-loops -finline-functions -DNDEBUG $(RELEASE_CFLAGS) -Wall -W -Winline -DFLaC__INLINE=__inline__ -DVERSION=$(VERSION) $(DEFINES) $(INCLUDES)
|
|
|
|
LFLAGS = -L$(LIBPATH)
|
|
|
|
debug : $(ORDINALS_H) $(STATIC_LIB) $(DYNAMIC_LIB)
|
|
release : $(ORDINALS_H) $(STATIC_LIB) $(DYNAMIC_LIB)
|
|
|
|
$(STATIC_LIB) : $(OBJS)
|
|
$(LINK) $@ $(OBJS) && ranlib $@
|
|
|
|
$(DYNAMIC_LIB) : $(OBJS)
|
|
ifeq ($(DARWIN_BUILD),yes)
|
|
$(LINKD) -o $@ $(OBJS) $(LFLAGS) $(LIBS) -lc
|
|
else
|
|
$(LINKD) -o $@ $(OBJS) $(LFLAGS) $(LIBS)
|
|
endif
|
|
|
|
%.o : %.c
|
|
$(CC) $(CFLAGS) -c $< -o $@
|
|
%.o : %.cc
|
|
$(CCC) $(CFLAGS) -c $< -o $@
|
|
%.o : %.cpp
|
|
$(CCC) $(CFLAGS) -c $< -o $@
|
|
%.i : %.c
|
|
$(CC) $(CFLAGS) -E $< -o $@
|
|
%.i : %.cc
|
|
$(CCC) $(CFLAGS) -E $< -o $@
|
|
%.i : %.cpp
|
|
$(CCC) $(CFLAGS) -E $< -o $@
|
|
|
|
%.o : %.nasm
|
|
$(NASM) -f elf -d OBJ_FORMAT_elf -i ia32/ $< -o $@
|
|
|
|
.PHONY : clean
|
|
clean :
|
|
-rm -f $(OBJS) $(STATIC_LIB) $(DYNAMIC_LIB) $(ORDINALS_H)
|
|
|
|
.PHONY : depend
|
|
depend:
|
|
makedepend -fMakefile.lite -- $(CFLAGS) $(INCLUDES) -- *.c *.cc *.cpp
|