X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi%2FMakefile;h=3602885812ad984f045caeaf8c3b3069efa13228;hb=109e949e6ab88e4525db10ed914d9f10e6c2c2b9;hp=ac52e34d8e1d8dcdd21a072e181469eea193aa81;hpb=244328d6a2b108b8d4448df06034ca088e313440;p=clsql.git diff --git a/uffi/Makefile b/uffi/Makefile index ac52e34..3602885 100644 --- a/uffi/Makefile +++ b/uffi/Makefile @@ -48,8 +48,8 @@ else ld -shared -soname=$(base) -lc $(object) -o $(shared64_lib) rm -f $(object) @echo "Ensure that you have multiarch i386 build tools if you want to build 32-bit library" - gcc -m32 -fPIC -DPIC -c $(source) -o $(object) - ld -melf_i386 -shared -soname=$(base) -lc $(object) -o $(shared_lib) + -gcc -m32 -fPIC -DPIC -c $(source) -o $(object) + -ld -melf_i386 -shared -soname=$(base) -lc $(object) -o $(shared_lib) else gcc -fPIC -DPIC -c $(source) -o $(object) ld -shared -soname=$(base) -lc $(object) -o $(shared_lib) @@ -58,7 +58,7 @@ else endif endif endif - rm $(object) + rm -f $(object) .PHONY: distclean