1a32af1642d436d4e21674fae8d20ba7c391edd8
[platform/upstream/flac.git] / build / lib.mk
1 #  FLAC - Free Lossless Audio Codec
2 #  Copyright (C) 2001  Josh Coalson
3 #
4 #  This program is part of FLAC; you can redistribute it and/or
5 #  modify it under the terms of the GNU General Public License
6 #  as published by the Free Software Foundation; either version 2
7 #  of the License, or (at your option) any later version.
8 #
9 #  This program is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #  GNU General Public License for more details.
13 #
14 #  You should have received a copy of the GNU General Public License
15 #  along with this program; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17
18 #
19 # GNU makefile fragment for building a library
20 #
21
22 CC          = gcc
23 NASM        = nasm
24 LINK        = ar cru
25 LINKD       = ld -G
26 LIBPATH     = ../../obj/lib
27 STATIC_LIB  = $(LIBPATH)/$(LIB_NAME).a
28 DYNAMIC_LIB = $(LIBPATH)/$(LIB_NAME).so
29
30 all : release
31
32 include ../../build/config.mk
33
34 debug   : CFLAGS = -g -O0 -DDEBUG $(DEBUG_CFLAGS) -Wall -W -DVERSION=$(VERSION) $(DEFINES) $(INCLUDES)
35 release : CFLAGS = -O3 -fomit-frame-pointer -funroll-loops -finline-functions -DNDEBUG $(RELEASE_CFLAGS) -Wall -W -Winline -DFLAC__INLINE=__inline__ -DVERSION=$(VERSION) $(DEFINES) $(INCLUDES)
36
37 LFLAGS  = -L$(LIBPATH)
38
39 debug   : $(ORDINALS_H) $(STATIC_LIB) $(DYNAMIC_LIB)
40 release : $(ORDINALS_H) $(STATIC_LIB) $(DYNAMIC_LIB)
41
42 $(STATIC_LIB) : $(OBJS)
43         $(LINK) $@ $(OBJS)
44
45 $(DYNAMIC_LIB) : $(OBJS)
46         $(LINKD) -o $@ $(OBJS) $(LFLAGS) $(LIBS)
47
48 %.o : %.c
49         $(CC) $(CFLAGS) -c $< -o $@
50 %.i : %.c
51         $(CC) $(CFLAGS) -E $< -o $@
52
53 %.o : %.nasm
54         $(NASM) -f elf -d OBJ_FORMAT_elf -i ia32/ $< -o $@
55
56 .PHONY : clean
57 clean :
58         -rm -f $(OBJS) $(STATIC_LIB) $(DYNAMIC_LIB) $(ORDINALS_H)
59
60 .PHONY : depend
61 depend:
62         makedepend -- $(CFLAGS) $(INCLUDES) -- *.c