blob: 507d3b17e9597109bdbeb7d12aa5d239c21f2741 [file] [log] [blame]
Josh Coalson6b05bc52001-06-08 00:13:21 +00001# 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
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000018#
19# GNU makefile fragment for building an executable
20#
21
Josh Coalson6e144902001-12-07 19:28:25 +000022ifeq ($(DARWIN_BUILD),yes)
23CC = cc
24else
Josh Coalson955a7672001-05-03 02:24:39 +000025CC = gcc
Josh Coalson6e144902001-12-07 19:28:25 +000026endif
Josh Coalson955a7672001-05-03 02:24:39 +000027NASM = nasm
Josh Coalson6e144902001-12-07 19:28:25 +000028# LINKAGE can be forced to -static or -dynamic from invocation if desired, but it defaults to -static except on OSX
29ifeq ($(DARWIN_BUILD),yes)
30LINKAGE = -dynamic
31else
Josh Coalson955a7672001-05-03 02:24:39 +000032LINKAGE = -static
Josh Coalson6e144902001-12-07 19:28:25 +000033endif
34LINK = $(CC) $(LINKAGE)
Josh Coalson955a7672001-05-03 02:24:39 +000035BINPATH = ../../obj/bin
36LIBPATH = ../../obj/lib
37PROGRAM = $(BINPATH)/$(PROGRAM_NAME)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000038
39all : release
40
Josh Coalson6ca4b1b2001-06-29 02:54:59 +000041include ../../build/config.mk
42
43debug : CFLAGS = -g -O0 -DDEBUG $(DEBUG_CFLAGS) -Wall -W -DVERSION=$(VERSION) $(DEFINES) $(INCLUDES)
Josh Coalson9bab0412001-07-20 23:44:35 +000044release : CFLAGS = -O3 -fomit-frame-pointer -funroll-loops -finline-functions -DNDEBUG $(RELEASE_CFLAGS) -Wall -W -Winline -DFLaC__INLINE=__inline__ -DVERSION=$(VERSION) $(DEFINES) $(INCLUDES)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000045
46LFLAGS = -L$(LIBPATH)
47
Josh Coalson6ca4b1b2001-06-29 02:54:59 +000048debug : $(ORDINALS_H) $(PROGRAM)
49release : $(ORDINALS_H) $(PROGRAM)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000050
51$(PROGRAM) : $(OBJS)
52 $(LINK) -o $@ $(OBJS) $(LFLAGS) $(LIBS)
53
54%.o : %.c
55 $(CC) $(CFLAGS) -c $< -o $@
56%.i : %.c
57 $(CC) $(CFLAGS) -E $< -o $@
58
Josh Coalson22558482001-06-13 18:04:47 +000059%.o : %.nasm
Josh Coalson1162f182001-06-19 06:48:21 +000060 $(NASM) -f elf -d OBJ_FORMAT_elf -i ia32/ $< -o $@
Josh Coalson955a7672001-05-03 02:24:39 +000061
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000062.PHONY : clean
63clean :
64 -rm -f $(OBJS) $(PROGRAM)
65
66.PHONY : depend
67depend:
68 makedepend -- $(CFLAGS) $(INCLUDES) -- *.c