-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile-windows
38 lines (34 loc) · 1.74 KB
/
Makefile-windows
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
34
35
36
37
38
#============================================================================
# bandwidth, a benchmark to estimate memory transfer bandwidth.
# Copyright (C) 2005-2019 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 dot co.
#============================================================================
SRC=main.c
OBJ=main.o
AS=nasm
CFLAGS= -g -Wno-conditional-type-mismatch -Wall -I.
CC=gcc
bandwidth64: Testing.c TestingX86.c ${SRC} routines-x86-64bit.asm libOOC.a
${AS} -f win64 routines-x86-64bit.asm -o routines-x86-64bit.o
${CC} -D__WIN64__ ${CFLAGS} -c -I ./OOC Testing.c TestingX86.c
${CC} ${CFLAGS} -D__WIN64__ -DWINVER=0x0600 -m64 ${SRC} TestingX86.o Testing.o routines-x86-64bit.o ${LIB} -o bandwidth64
bandwidth32: Testing.c ${SRC} routines-x86-32bit.asm libOOC.a
${AS} -f win32 routines-x86-32bit.asm -o routines-x86-32bit.o
${CC} -D__WIN32__ -m32 ${CFLAGS} -c -I ./OOC Testing.c TestingX86.c
${CC} ${CFLAGS} -D__WIN32__ -DWINVER=0x0600 -m32 ${SRC} TestingX86.o Testing.o routines-x86-32bit.o ${LIB} -o bandwidth32
include Makefile-OOC