-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile-linux-i386
33 lines (30 loc) · 1.41 KB
/
Makefile-linux-i386
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#============================================================================
# bandwidth, a benchmark to estimate memory transfer bandwidth.
# Copyright (C) 2005-2023 by Zack T Smith.
#
# This program is free software; 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# The author may be reached at 1 at zsmith.co
#============================================================================
SRC=main.c
OBJ=main.o
AS=nasm
CFLAGS=-m32 -g -Wno-conditional-type-mismatch -Wall -I. -I /usr/include/i386-linux-gnu
CC=gcc
bandwidth32: Testing.c TestingX86.c ${SRC} routines-x86-32bit.asm libOOC.a
${AS} -f elf routines-x86-32bit.asm -o routines-x86-32bit.o
${CC} ${CFLAGS} -c -I ./OOC Testing.c TestingX86.c
${CC} ${CFLAGS} ${SRC} Testing.o TestingX86.o routines-x86-32bit.o -o bandwidth32 ${LIB}
include Makefile-OOC