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
|
Description: adds c3_fmt.o to JOHN_OBJS in freebsd-* targets
Author: Julián Moreno Patiño <julian@debian.org>
Reviewed-By: Ruben Molina <rmolina@udea.edu.co>
Last-Update: 2013-06-04
Forwarded: no
--- a/src/Makefile
+++ b/src/Makefile
@@ -406,24 +406,24 @@
freebsd-x86-64:
$(LN) x86-64.h arch.h
$(MAKE) $(PROJ) \
- JOHN_OBJS="$(JOHN_OBJS) x86-64.o"
+ JOHN_OBJS="$(JOHN_OBJS) c3_fmt.o x86-64.o"
freebsd-x86-sse2:
$(LN) x86-sse.h arch.h
$(MAKE) $(PROJ) \
- JOHN_OBJS="$(JOHN_OBJS) x86.o x86-sse.o" \
+ JOHN_OBJS="$(JOHN_OBJS) c3_fmt.o x86.o x86-sse.o" \
ASFLAGS="$(ASFLAGS) -DBSD"
freebsd-x86-mmx:
$(LN) x86-mmx.h arch.h
$(MAKE) $(PROJ) \
- JOHN_OBJS="$(JOHN_OBJS) x86.o x86-mmx.o" \
+ JOHN_OBJS="$(JOHN_OBJS) c3_fmt.o x86.o x86-mmx.o" \
ASFLAGS="$(ASFLAGS) -DBSD"
freebsd-x86-any:
$(LN) x86-any.h arch.h
$(MAKE) $(PROJ) \
- JOHN_OBJS="$(JOHN_OBJS) x86.o" \
+ JOHN_OBJS="$(JOHN_OBJS) c3_fmt.o x86.o" \
ASFLAGS="$(ASFLAGS) -DBSD"
freebsd-x86-any-a.out:
|