makefile.mk (7a3beb32) | makefile.mk (a46ef990) |
---|---|
1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 94 unchanged lines hidden (view full) --- 103BUILD_DIR=$(CONFIGURE_DIR) 104BUILD_ACTION=$(GNUMAKE) 105BUILD_FLAGS+= -j$(EXTMAXPROCESS) 106 107.IF "$(OS)"=="MACOSX" 108# Serf names its library only with the major number. 109# We are using minor and micro as well. Fix that here 110# by creating a copy with the right name. | 1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 94 unchanged lines hidden (view full) --- 103BUILD_DIR=$(CONFIGURE_DIR) 104BUILD_ACTION=$(GNUMAKE) 105BUILD_FLAGS+= -j$(EXTMAXPROCESS) 106 107.IF "$(OS)"=="MACOSX" 108# Serf names its library only with the major number. 109# We are using minor and micro as well. Fix that here 110# by creating a copy with the right name. |
111SERF_ORIGINAL_LIB=.libs/libserf-$(SERF_MAJOR).0.0.0.dylib | 111SERF_ORIGINAL_LIB=.libs/libserf-$(SERF_MAJOR).0.dylib |
112SERF_FIXED_LIB=.libs/libserf-$(LIBSERFVERSION).0.dylib 113INSTALL_ACTION=if [ -f "$(SERF_ORIGINAL_LIB)" -a ! -f "$(SERF_FIXED_LIB)" ]; then cp $(SERF_ORIGINAL_LIB) $(SERF_FIXED_LIB); fi 114.ENDIF 115 116OUT2INC+=serf*.h 117OUT2INC_SUBDIR=serf 118 119.IF "$(OS)"=="MACOSX" --- 15 unchanged lines hidden --- | 112SERF_FIXED_LIB=.libs/libserf-$(LIBSERFVERSION).0.dylib 113INSTALL_ACTION=if [ -f "$(SERF_ORIGINAL_LIB)" -a ! -f "$(SERF_FIXED_LIB)" ]; then cp $(SERF_ORIGINAL_LIB) $(SERF_FIXED_LIB); fi 114.ENDIF 115 116OUT2INC+=serf*.h 117OUT2INC_SUBDIR=serf 118 119.IF "$(OS)"=="MACOSX" --- 15 unchanged lines hidden --- |