X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=db-mysql%2FMakefile;h=3616e9b6b28a9b7b72d974ca8307968ecd3dac21;hb=1a446890f95ab363af82529a133546d722ef21b1;hp=9e2e2913cfcd0a78ab0c32670ae0b8a11d8f7fb2;hpb=0ad64f85ff6cd99a78cc9ae6716ebbdb5627eaef;p=clsql.git diff --git a/db-mysql/Makefile b/db-mysql/Makefile index 9e2e291..3616e9b 100644 --- a/db-mysql/Makefile +++ b/db-mysql/Makefile @@ -50,29 +50,29 @@ else cc $(CFLAGS) -arch x86_64 -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress $(source) -o $(dylib) cc -arch x86_64 -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress /usr/lib/libz.dylib -o z.dylib else - ifneq ($(OS_DARWIN),0) - cc $(CFLAGS) -arch x86_64 -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress $(source) -o $(dylib) - cc -arch x86_64 -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress /usr/lib/libz.dylib -o z.dylib - else - ifneq ($(OS_CYGWIN),0) - gcc $(CFLAGS) -DWIN32 -c $(source) -o $(object) - ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared_lib) + ifneq ($(OS_DARWIN),0) + cc $(CFLAGS) -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress $(source) -o $(dylib) + cc -arch i386 -bundle /usr/lib/bundle1.o -flat_namespace -undefined suppress /usr/lib/libz.dylib -o z.dylib else - ifneq ($(OS_LINUX64),0) - gcc $(CFLAGS) -fPIC -c $(source) -o $(object) - ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared64_lib) - rm $(object) - @echo "Ensure that you have multiarch i386 build tools and libraries if you want to build 32-bit library" - -gcc $(CFLAGS32) -fPIC -c $(source) -o $(object) - -ld -shared -soname=$(base) $(object) $(LDFLAGS32) -o $(shared_lib) + ifneq ($(OS_CYGWIN),0) + gcc $(CFLAGS) -DWIN32 -c $(source) -o $(object) + ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared_lib) else - gcc $(CFLAGS) -fPIC -c $(source) -o $(object) - ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared_lib) + ifneq ($(OS_LINUX64),0) + gcc $(CFLAGS) -fPIC -c $(source) -o $(object) + ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared64_lib) + rm $(object) + @echo "Ensure that you have multiarch i386 build tools and libraries if you want to build 32-bit library" + -gcc $(CFLAGS32) -fPIC -c $(source) -o $(object) + -ld -shared -soname=$(base) $(object) $(LDFLAGS32) -o $(shared_lib) + else + gcc $(CFLAGS) -fPIC -c $(source) -o $(object) + ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared_lib) + endif endif endif endif endif -endif endif rm -f $(object)