Makefile.in
changeset 5743 2eaddece9339
parent 5738 dfbda1b84e94
child 5746 12761535865a
equal deleted inserted replaced
5742:d9948762e08b 5743:2eaddece9339
    39 ifdef LIPO
    39 ifdef LIPO
    40 # Lipo is an OSX thing. If it is defined, it means we are building for universal,
    40 # Lipo is an OSX thing. If it is defined, it means we are building for universal,
    41 # and so we have have to combine the binaries into one big binary
    41 # and so we have have to combine the binaries into one big binary
    42 
    42 
    43 # Remove the last binary made by the last compiled target
    43 # Remove the last binary made by the last compiled target
    44 	rm -f $(BIN_DIR)/$(TTD)
    44 	$(Q)rm -f $(BIN_DIR)/$(TTD)
    45 # Make all the binaries into one
    45 # Make all the binaries into one
    46 	$(LIPO) -create -output $(BIN_DIR)/$(TTD) $(TTDS)
    46 	$(Q)$(LIPO) -create -output $(BIN_DIR)/$(TTD) $(TTDS)
    47 endif
    47 endif
    48 
    48 
    49 config.cache: $(CONFIG_CACHE_SOURCE_LIST) $(CONFIGURE_FILES)
    49 config.cache: $(CONFIG_CACHE_SOURCE_LIST) $(CONFIGURE_FILES)
    50 ifeq ($(shell if test -f config.cache; then echo 1; fi), 1)
    50 ifeq ($(shell if test -f config.cache; then echo 1; fi), 1)
    51 	@echo "----------------"
    51 	@echo "----------------"