blob: 50a78032080c305f1ed492c67399950f8e87b411 [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 Coalson955a7672001-05-03 02:24:39 +000022CC = gcc
23NASM = nasm
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000024# LINKAGE can be forced to -static or -dynamic from invocation if desired, but it defaults to -static
Josh Coalson955a7672001-05-03 02:24:39 +000025LINKAGE = -static
26LINK = gcc $(LINKAGE)
27BINPATH = ../../obj/bin
28LIBPATH = ../../obj/lib
29PROGRAM = $(BINPATH)/$(PROGRAM_NAME)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000030
31all : release
32
Josh Coalson9c03c192001-05-03 00:48:32 +000033debug : CFLAGS = -g -O0 -DDEBUG $(DEBUG_CFLAGS) -Wall -W $(DEFINES) $(INCLUDES)
34release : CFLAGS = -O3 -fomit-frame-pointer -funroll-loops -ffast-math -finline-functions -DNDEBUG $(RELEASE_CFLAGS) -Wall -W $(DEFINES) $(INCLUDES)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000035
36LFLAGS = -L$(LIBPATH)
37
38debug : $(PROGRAM)
39release : $(PROGRAM)
40
41$(PROGRAM) : $(OBJS)
42 $(LINK) -o $@ $(OBJS) $(LFLAGS) $(LIBS)
43
44%.o : %.c
45 $(CC) $(CFLAGS) -c $< -o $@
46%.i : %.c
47 $(CC) $(CFLAGS) -E $< -o $@
48
Josh Coalson31c8a1f2001-05-25 00:21:42 +000049%.o : %.s
Josh Coalson955a7672001-05-03 02:24:39 +000050 $(NASM) -f elf -d ELF -i i386/ $< -o $@
51
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000052.PHONY : clean
53clean :
54 -rm -f $(OBJS) $(PROGRAM)
55
56.PHONY : depend
57depend:
58 makedepend -- $(CFLAGS) $(INCLUDES) -- *.c