1 Index: svn/cpu/x86/Linux/Makefile
2 ===================================================================
3 --- svn.orig/cpu/x86/Linux/Makefile 2007-02-15 14:26:55.000000000 -0700
4 +++ svn/cpu/x86/Linux/Makefile 2007-02-15 14:52:41.000000000 -0700
6 # Use x86forth when you need to compile new dictionaries that will
9 - ${CC} -o -m32 $@ ${OBJS}
10 + ${CC} -m32 -o $@ ${OBJS}
11 @ln -sf forth x86forth
13 # Compile with -O0 because with GCC4, higher optimization levels cause the
14 # functions to be reordered so the "inflate" entry point is no longer at
16 inflate.o: ${ZIPDIR}/inflate.c
17 - ${CC} -c -m32 -O0 -fpic $< -o $@
18 + ${CC} -m32 -c -O0 -fpic $< -o $@
20 ../build/inflate.bin: inflate.o
21 objcopy -O binary $< $@