[-]
[+]
|
Changed |
bandwidth.spec
|
|
[-]
[+]
|
Added |
bandwidth-makefile.diff
^
|
@@ -0,0 +1,17 @@
+--- Makefile.orig 2008-07-13 21:56:49.000000000 +0200
++++ Makefile 2008-07-13 21:57:46.000000000 +0200
+@@ -2,8 +2,12 @@
+ CFLAGS=
+ CC=gcc
+
+-bandwidth: main.c routines.s
+- nasm -f elf routines.s -o routines.o
++bandwidth32: main.c routines.s
++ yasm -f elf32 routines.s -o routines.o
++ ${CC} routines.o main.c ${CFLAGS} -o bandwidth
++
++bandwidth64: main.c routines.s
++ yasm -f elf64 routines.s -o routines.o
+ ${CC} routines.o main.c ${CFLAGS} -o bandwidth
+
+ clean:
|