mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-03 11:24:10 +01:00
8f977a4411
This is the first cleanup pass through makefiles and pios. Probably it is difficult to track changes due to the nature of them. I would recommend to look at resulting files and compiled code instead. NOTE: original branch was rebased and lot of conflicts were fixed on the way. So do not expect that every commit in this series will be buildable (unlike original branch). Only final result was tested. The main goal was to remove as much duplication of code (and copy/paste errors) as possible, moving common parts out of Makefiles. It still is not perfect, and mostly no code changes made - Makefiles and #ifdefs only. But please while testing make sure that all code works as before, and no modules/options are missed by accident. Brief list of changes: - Moved common parts of Makefiles into the set of *.mk files. - Changed method of passing common vars from top Makefile to lower ones. - Some pios cleanup, mostly #ifdefs, and all pios_config.h files. - Many obsolete files removed (for instance, AHRS files, op_config.h). - Many obsolete or unused macros removed or fixed/renamed (ALL_DIGNOSTICS). - Unified pios_config.h template. Please don't remove lines for board configs, only comment/uncomment them. Adding new PIOS options, please propagate them to all board files keeping the same order. - Some formatting, spacing, indentation (no line endings change yet). - Some cosmetic fixes (no more C:\X\Y\filename.c printings on Windows). - Added some library.mk files to move libs into AR achives later. - EntireFlash target now uses cross-platform python script to generate bin files. So it works on all supported platforms: Linux, OSX, Windows. - Top level packaging is completely rewritten. Now it is a part of top Makefile. As such, all dependencies are checked and accounted, no more 'make -j' problems should occur. - Default GCS_BUILD_CONF is release now, may be changed if necessary using 'make GCS_BUILD_CONF=debug gcs'. - GCS build paths are separated into debug and release, so no more obj file clashes. Packaging system supports only release builds. - New target is introduced: 'clean_package'. Now 'make package' does not clean build directory. Use clean_package instead for distributable builds. - Targets like 'all', 'opfw_resource', etc now will print extra contex in parallel builds too. - If any of 'package', 'clean_package', 'opfw_resource' targets are given on command line, GCS build will depend on the resource, so all fw_*.opfw targets will be built and embedded into GCS. By default GCS does not depend on resource, and will be built w/o firmware (unless the resource files already exist and the Qt resource file is generated). - fw_simposix (ELF executable) is now packaged for linux. Run'n'play! - Make help is refined and is now up to date. Still broken: - UnitTests, should be fixed - SimPosix: buildable, but should be reworked. Next planned passes to do: - toolchain bootstrapping and packaging (including windows - WIP) - CMSIS/StdPeriph lib cleanup - more PIOS cleanup - move libs into AR archives to save build time - sim targets refactir and cleanup - move android-related directories under <top>/android - unit test targets fix - source code line ending changes (there are many different, were not changed) - coding style Merging this, please use --no-ff git option to make it the real commit point Conflicts: A lot of... :-)
343 lines
13 KiB
Makefile
343 lines
13 KiB
Makefile
###############################################################
|
|
#
|
|
# Installers for tools required by the ground and flight builds
|
|
#
|
|
# NOTE: These are not tied to the default goals
|
|
# and must be invoked manually
|
|
#
|
|
###############################################################
|
|
|
|
# Set up QT toolchain
|
|
QT_SDK_DIR := $(TOOLS_DIR)/qtsdk-v1.2.1
|
|
|
|
.PHONY: qt_sdk_install
|
|
# Choose the appropriate installer based on host architecture
|
|
ifneq (,$(filter $(ARCH), x86_64 amd64))
|
|
# 64-bit
|
|
QT_SDK_QMAKE_PATH := $(QT_SDK_DIR)/Desktop/Qt/4.8.1/gcc/bin/qmake
|
|
qt_sdk_install: QT_SDK_FILE := QtSdk-offline-linux-x86_64-v1.2.1.run
|
|
qt_sdk_install: QT_SDK_URL := http://www.developer.nokia.com/dp?uri=http://sw.nokia.com/id/14b2039c-0e1f-4774-a4f2-9aa60b6d5313/Qt_SDK_Lin64_offline
|
|
else
|
|
# 32-bit
|
|
QT_SDK_QMAKE_PATH := $(QT_SDK_DIR)/Desktop/Qt/4.8.1/gcc/bin/qmake
|
|
qt_sdk_install: QT_SDK_URL := http://www.developer.nokia.com/dp?uri=http://sw.nokia.com/id/8ea74da4-fec1-4277-8b26-c58cc82e204b/Qt_SDK_Lin32_offline
|
|
qt_sdk_install: QT_SDK_FILE := QtSdk-offline-linux-x86-v1.2.1.run
|
|
endif
|
|
# order-only prereq on directory existance:
|
|
qt_sdk_install : | $(DL_DIR) $(TOOLS_DIR)
|
|
qt_sdk_install: qt_sdk_clean
|
|
# download the source only if it's newer than what we already have
|
|
$(V1) $(WGET) -N --content-disposition -P "$(DL_DIR)" "$(QT_SDK_URL)"
|
|
# tell the user exactly which path they should select in the GUI
|
|
$(V1) echo "*** NOTE NOTE NOTE ***"
|
|
$(V1) echo "*"
|
|
$(V1) echo "* In the GUI, please use exactly this path as the installation path:"
|
|
$(V1) echo "* $(QT_SDK_DIR)"
|
|
$(V1) echo "*"
|
|
$(V1) echo "*** NOTE NOTE NOTE ***"
|
|
|
|
#installer is an executable, make it executable and run it
|
|
$(V1) chmod u+x "$(DL_DIR)/$(QT_SDK_FILE)"
|
|
$(V1) "$(DL_DIR)/$(QT_SDK_FILE)" -style cleanlooks
|
|
|
|
.PHONY: qt_sdk_clean
|
|
qt_sdk_clean:
|
|
$(V1) [ ! -d "$(QT_SDK_DIR)" ] || $(RM) -rf $(QT_SDK_DIR)
|
|
|
|
# Set up ARM (STM32) SDK
|
|
ARM_SDK_DIR := $(TOOLS_DIR)/gcc-arm-none-eabi-4_6-2012q4
|
|
|
|
.PHONY: arm_sdk_install
|
|
arm_sdk_install: ARM_SDK_URL := https://launchpad.net/gcc-arm-embedded/4.6/4.6-2012-q4-update/+download/gcc-arm-none-eabi-4_6-2012q4-20121016.tar.bz2
|
|
arm_sdk_install: ARM_SDK_FILE := $(notdir $(ARM_SDK_URL))
|
|
# order-only prereq on directory existance:
|
|
arm_sdk_install: | $(DL_DIR) $(TOOLS_DIR)
|
|
arm_sdk_install: arm_sdk_clean
|
|
# download the source only if it's newer than what we already have
|
|
$(V1) $(WGET) --no-check-certificate -N -P "$(DL_DIR)" "$(ARM_SDK_URL)"
|
|
|
|
# binary only release so just extract it
|
|
$(V1) tar -C $(TOOLS_DIR) -xjf "$(DL_DIR)/$(ARM_SDK_FILE)"
|
|
|
|
.PHONY: arm_sdk_clean
|
|
arm_sdk_clean:
|
|
$(V1) [ ! -d "$(ARM_SDK_DIR)" ] || $(RM) -r $(ARM_SDK_DIR)
|
|
|
|
# Set up openocd tools
|
|
OPENOCD_DIR := $(TOOLS_DIR)/openocd
|
|
OPENOCD_WIN_DIR := $(TOOLS_DIR)/openocd_win
|
|
OPENOCD_BUILD_DIR := $(DL_DIR)/openocd-build
|
|
|
|
.PHONY: openocd_install
|
|
openocd_install: | $(DL_DIR) $(TOOLS_DIR)
|
|
openocd_install: OPENOCD_URL := http://sourceforge.net/projects/openocd/files/openocd/0.6.1/openocd-0.6.1.tar.bz2/download
|
|
openocd_install: OPENOCD_FILE := openocd-0.6.1.tar.bz2
|
|
openocd_install: openocd_clean
|
|
# download the source only if it's newer than what we already have
|
|
$(V1) $(WGET) -N -P "$(DL_DIR)" --trust-server-name "$(OPENOCD_URL)"
|
|
|
|
# extract the source
|
|
$(V1) [ ! -d "$(OPENOCD_BUILD_DIR)" ] || $(RM) -r "$(OPENOCD_BUILD_DIR)"
|
|
$(V1) mkdir -p "$(OPENOCD_BUILD_DIR)"
|
|
$(V1) tar -C $(OPENOCD_BUILD_DIR) -xjf "$(DL_DIR)/$(OPENOCD_FILE)"
|
|
|
|
# apply patches
|
|
$(V0) @echo " PATCH $(OPENOCD_DIR)"
|
|
$(V1) ( \
|
|
cd $(OPENOCD_BUILD_DIR)/openocd-0.6.1 ; \
|
|
patch -p1 < $(ROOT_DIR)/flight/Project/OpenOCD/0001-armv7m-remove-dummy-FP-regs-for-new-gdb.patch ; \
|
|
patch -p1 < $(ROOT_DIR)/flight/Project/OpenOCD/0002-rtos-add-stm32_stlink-to-FreeRTOS-targets.patch ; \
|
|
)
|
|
|
|
# build and install
|
|
$(V1) mkdir -p "$(OPENOCD_DIR)"
|
|
$(V1) ( \
|
|
cd $(OPENOCD_BUILD_DIR)/openocd-0.6.1 ; \
|
|
./configure --prefix="$(OPENOCD_DIR)" --enable-ft2232_libftdi --enable-stlink ; \
|
|
$(MAKE) --silent ; \
|
|
$(MAKE) --silent install ; \
|
|
)
|
|
|
|
# delete the extracted source when we're done
|
|
$(V1) [ ! -d "$(OPENOCD_BUILD_DIR)" ] || $(RM) -rf "$(OPENOCD_BUILD_DIR)"
|
|
|
|
.PHONY: ftd2xx_install
|
|
|
|
FTD2XX_DIR := $(DL_DIR)/ftd2xx
|
|
|
|
ftd2xx_install: | $(DL_DIR)
|
|
ftd2xx_install: FTD2XX_URL := http://www.ftdichip.com/Drivers/CDM/Beta/CDM20817.zip
|
|
ftd2xx_install: FTD2XX_FILE := CDM20817.zip
|
|
ftd2xx_install: ftd2xx_clean
|
|
# download the file only if it's newer than what we already have
|
|
$(V0) @echo " DOWNLOAD $(FTD2XX_URL)"
|
|
$(V1) $(WGET) -q -N -P "$(DL_DIR)" "$(FTD2XX_URL)"
|
|
|
|
# extract the source
|
|
$(V0) @echo " EXTRACT $(FTD2XX_FILE) -> $(FTD2XX_DIR)"
|
|
$(V1) mkdir -p "$(FTD2XX_DIR)"
|
|
$(V1) unzip -q -d "$(FTD2XX_DIR)" "$(DL_DIR)/$(FTD2XX_FILE)"
|
|
|
|
.PHONY: ftd2xx_clean
|
|
ftd2xx_clean:
|
|
$(V0) @echo " CLEAN $(FTD2XX_DIR)"
|
|
$(V1) [ ! -d "$(FTD2XX_DIR)" ] || $(RM) -r "$(FTD2XX_DIR)"
|
|
|
|
.PHONY: ftd2xx_install
|
|
|
|
LIBUSB_WIN_DIR := $(DL_DIR)/libusb-win32-bin-1.2.6.0
|
|
|
|
libusb_win_install: | $(DL_DIR)
|
|
libusb_win_install: LIBUSB_WIN_URL := http://sourceforge.net/projects/libusb-win32/files/libusb-win32-releases/1.2.6.0/libusb-win32-bin-1.2.6.0.zip/download
|
|
libusb_win_install: LIBUSB_WIN_FILE := libusb-win32-bin-1.2.6.0.zip
|
|
libusb_win_install: libusb_win_clean
|
|
# download the file only if it's newer than what we already have
|
|
$(V0) @echo " DOWNLOAD $(LIBUSB_WIN_URL)"
|
|
$(V1) $(WGET) -q -N -P "$(DL_DIR)" --trust-server-name "$(LIBUSB_WIN_URL)"
|
|
|
|
# extract the source
|
|
$(V0) @echo " EXTRACT $(LIBUSB_WIN_FILE) -> $(LIBUSB_WIN_DIR)"
|
|
$(V1) mkdir -p "$(LIBUSB_WIN_DIR)"
|
|
$(V1) unzip -q -d "$(DL_DIR)" "$(DL_DIR)/$(LIBUSB_WIN_FILE)"
|
|
|
|
# fixup .h file needed by openocd build
|
|
$(V0) @echo " FIXUP $(LIBUSB_WIN_DIR)"
|
|
$(V1) ln -s "$(LIBUSB_WIN_DIR)/include/lusb0_usb.h" "$(LIBUSB_WIN_DIR)/include/usb.h"
|
|
|
|
.PHONY: libusb_win_clean
|
|
libusb_win_clean:
|
|
$(V0) @echo " CLEAN $(LIBUSB_WIN_DIR)"
|
|
$(V1) [ ! -d "$(LIBUSB_WIN_DIR)" ] || $(RM) -r "$(LIBUSB_WIN_DIR)"
|
|
|
|
.PHONY: openocd_git_win_install
|
|
|
|
openocd_git_win_install: | $(DL_DIR) $(TOOLS_DIR)
|
|
openocd_git_win_install: OPENOCD_URL := git://openocd.git.sourceforge.net/gitroot/openocd/openocd
|
|
openocd_git_win_install: OPENOCD_REV := f1c0133321c8fcadadd10bba5537c0a634eb183b
|
|
openocd_git_win_install: openocd_win_clean libusb_win_install ftd2xx_install
|
|
# download the source
|
|
$(V0) @echo " DOWNLOAD $(OPENOCD_URL) @ $(OPENOCD_REV)"
|
|
$(V1) [ ! -d "$(OPENOCD_BUILD_DIR)" ] || $(RM) -rf "$(OPENOCD_BUILD_DIR)"
|
|
$(V1) mkdir -p "$(OPENOCD_BUILD_DIR)"
|
|
$(V1) git clone --no-checkout $(OPENOCD_URL) "$(DL_DIR)/openocd-build"
|
|
$(V1) ( \
|
|
cd $(OPENOCD_BUILD_DIR) ; \
|
|
git checkout -q $(OPENOCD_REV) ; \
|
|
)
|
|
|
|
# apply patches
|
|
$(V0) @echo " PATCH $(OPENOCD_BUILD_DIR)"
|
|
$(V1) ( \
|
|
cd $(OPENOCD_BUILD_DIR) ; \
|
|
git apply < $(ROOT_DIR)/flight/Project/OpenOCD/0001-armv7m-remove-dummy-FP-regs-for-new-gdb.patch ; \
|
|
git apply < $(ROOT_DIR)/flight/Project/OpenOCD/0002-rtos-add-stm32_stlink-to-FreeRTOS-targets.patch ; \
|
|
)
|
|
|
|
# build and install
|
|
$(V0) @echo " BUILD $(OPENOCD_WIN_DIR)"
|
|
$(V1) mkdir -p "$(OPENOCD_WIN_DIR)"
|
|
$(V1) ( \
|
|
cd $(OPENOCD_BUILD_DIR) ; \
|
|
./bootstrap ; \
|
|
./configure --enable-maintainer-mode --prefix="$(OPENOCD_WIN_DIR)" \
|
|
--build=i686-pc-linux-gnu --host=i586-mingw32msvc \
|
|
CPPFLAGS=-I$(LIBUSB_WIN_DIR)/include \
|
|
LDFLAGS=-L$(LIBUSB_WIN_DIR)/lib/gcc \
|
|
--enable-ft2232_ftd2xx --with-ftd2xx-win32-zipdir=$(FTD2XX_DIR) \
|
|
--disable-werror \
|
|
--enable-stlink ; \
|
|
$(MAKE) ; \
|
|
$(MAKE) install ; \
|
|
)
|
|
|
|
# delete the extracted source when we're done
|
|
$(V1) [ ! -d "$(OPENOCD_BUILD_DIR)" ] || $(RM) -rf "$(OPENOCD_BUILD_DIR)"
|
|
|
|
.PHONY: openocd_win_clean
|
|
openocd_win_clean:
|
|
$(V0) @echo " CLEAN $(OPENOCD_WIN_DIR)"
|
|
$(V1) [ ! -d "$(OPENOCD_WIN_DIR)" ] || $(RM) -r "$(OPENOCD_WIN_DIR)"
|
|
|
|
.PHONY: openocd_git_install
|
|
|
|
openocd_git_install: | $(DL_DIR) $(TOOLS_DIR)
|
|
openocd_git_install: OPENOCD_URL := git://openocd.git.sourceforge.net/gitroot/openocd/openocd
|
|
openocd_git_install: OPENOCD_REV := f1c0133321c8fcadadd10bba5537c0a634eb183b
|
|
openocd_git_install: openocd_clean
|
|
# download the source
|
|
$(V0) @echo " DOWNLOAD $(OPENOCD_URL) @ $(OPENOCD_REV)"
|
|
$(V1) [ ! -d "$(OPENOCD_BUILD_DIR)" ] || $(RM) -rf "$(OPENOCD_BUILD_DIR)"
|
|
$(V1) mkdir -p "$(OPENOCD_BUILD_DIR)"
|
|
$(V1) git clone --no-checkout $(OPENOCD_URL) "$(OPENOCD_BUILD_DIR)"
|
|
$(V1) ( \
|
|
cd $(OPENOCD_BUILD_DIR) ; \
|
|
git checkout -q $(OPENOCD_REV) ; \
|
|
)
|
|
|
|
# apply patches
|
|
$(V0) @echo " PATCH $(OPENOCD_DIR)"
|
|
$(V1) ( \
|
|
cd $(OPENOCD_BUILD_DIR) ; \
|
|
git apply < $(ROOT_DIR)/flight/Project/OpenOCD/0001-armv7m-remove-dummy-FP-regs-for-new-gdb.patch ; \
|
|
git apply < $(ROOT_DIR)/flight/Project/OpenOCD/0002-rtos-add-stm32_stlink-to-FreeRTOS-targets.patch ; \
|
|
)
|
|
|
|
# build and install
|
|
$(V0) @echo " BUILD $(OPENOCD_DIR)"
|
|
$(V1) mkdir -p "$(OPENOCD_DIR)"
|
|
$(V1) ( \
|
|
cd $(OPENOCD_BUILD_DIR) ; \
|
|
./bootstrap ; \
|
|
./configure --enable-maintainer-mode --prefix="$(OPENOCD_DIR)" --enable-ft2232_libftdi --enable-buspirate --enable-stlink ; \
|
|
$(MAKE) ; \
|
|
$(MAKE) install ; \
|
|
)
|
|
|
|
# delete the extracted source when we're done
|
|
$(V1) [ ! -d "$(OPENOCD_BUILD_DIR)" ] || $(RM) -rf "$(OPENOCD_BUILD_DIR)"
|
|
|
|
.PHONY: openocd_clean
|
|
openocd_clean:
|
|
$(V0) @echo " CLEAN $(OPENOCD_DIR)"
|
|
$(V1) [ ! -d "$(OPENOCD_DIR)" ] || $(RM) -r "$(OPENOCD_DIR)"
|
|
|
|
STM32FLASH_DIR := $(TOOLS_DIR)/stm32flash
|
|
|
|
.PHONY: stm32flash_install
|
|
stm32flash_install: STM32FLASH_URL := http://stm32flash.googlecode.com/svn/trunk
|
|
stm32flash_install: STM32FLASH_REV := 61
|
|
stm32flash_install: stm32flash_clean
|
|
# download the source
|
|
$(V0) @echo " DOWNLOAD $(STM32FLASH_URL) @ r$(STM32FLASH_REV)"
|
|
$(V1) svn export -q -r "$(STM32FLASH_REV)" "$(STM32FLASH_URL)" "$(STM32FLASH_DIR)"
|
|
|
|
# build
|
|
$(V0) @echo " BUILD $(STM32FLASH_DIR)"
|
|
$(V1) $(MAKE) --silent -C $(STM32FLASH_DIR) all
|
|
|
|
.PHONY: stm32flash_clean
|
|
stm32flash_clean:
|
|
$(V0) @echo " CLEAN $(STM32FLASH_DIR)"
|
|
$(V1) [ ! -d "$(STM32FLASH_DIR)" ] || $(RM) -r "$(STM32FLASH_DIR)"
|
|
|
|
DFUUTIL_DIR := $(TOOLS_DIR)/dfu-util
|
|
|
|
.PHONY: dfuutil_install
|
|
dfuutil_install: DFUUTIL_URL := http://dfu-util.gnumonks.org/releases/dfu-util-0.7.tar.gz
|
|
dfuutil_install: DFUUTIL_FILE := $(notdir $(DFUUTIL_URL))
|
|
dfuutil_install: | $(DL_DIR) $(TOOLS_DIR)
|
|
dfuutil_install: dfuutil_clean
|
|
# download the source
|
|
$(V0) @echo " DOWNLOAD $(DFUUTIL_URL)"
|
|
$(V1) $(WGET) -N -P "$(DL_DIR)" "$(DFUUTIL_URL)"
|
|
|
|
# extract the source
|
|
$(V0) @echo " EXTRACT $(DFUUTIL_FILE)"
|
|
$(V1) [ ! -d "$(DL_DIR)/dfuutil-build" ] || $(RM) -r "$(DL_DIR)/dfuutil-build"
|
|
$(V1) mkdir -p "$(DL_DIR)/dfuutil-build"
|
|
$(V1) tar -C $(DL_DIR)/dfuutil-build -xf "$(DL_DIR)/$(DFUUTIL_FILE)"
|
|
|
|
# build
|
|
$(V0) @echo " BUILD $(DFUUTIL_DIR)"
|
|
$(V1) mkdir -p "$(DFUUTIL_DIR)"
|
|
$(V1) ( \
|
|
cd $(DL_DIR)/dfuutil-build/dfu-util-0.7 ; \
|
|
./configure --prefix="$(DFUUTIL_DIR)" ; \
|
|
$(MAKE) ; \
|
|
$(MAKE) install ; \
|
|
)
|
|
|
|
.PHONY: dfuutil_clean
|
|
dfuutil_clean:
|
|
$(V0) @echo " CLEAN $(DFUUTIL_DIR)"
|
|
$(V1) [ ! -d "$(DFUUTIL_DIR)" ] || $(RM) -r "$(DFUUTIL_DIR)"
|
|
|
|
# see http://developer.android.com/sdk/ for latest versions
|
|
ANDROID_SDK_DIR := $(TOOLS_DIR)/android-sdk-linux
|
|
.PHONY: android_sdk_install
|
|
android_sdk_install: ANDROID_SDK_URL := http://dl.google.com/android/android-sdk_r20.0.3-linux.tgz
|
|
android_sdk_install: ANDROID_SDK_FILE := $(notdir $(ANDROID_SDK_URL))
|
|
# order-only prereq on directory existance:
|
|
android_sdk_install: | $(DL_DIR) $(TOOLS_DIR)
|
|
android_sdk_install: android_sdk_clean
|
|
# download the source only if it's newer than what we already have
|
|
$(V0) @echo " DOWNLOAD $(ANDROID_SDK_URL)"
|
|
$(V1) $(WGET) --no-check-certificate -N -P "$(DL_DIR)" "$(ANDROID_SDK_URL)"
|
|
|
|
# binary only release so just extract it
|
|
$(V0) @echo " EXTRACT $(ANDROID_SDK_FILE)"
|
|
$(V1) tar -C $(TOOLS_DIR) -xf "$(DL_DIR)/$(ANDROID_SDK_FILE)"
|
|
|
|
.PHONY: android_sdk_clean
|
|
android_sdk_clean:
|
|
$(V0) @echo " CLEAN $(ANDROID_SDK_DIR)"
|
|
$(V1) [ ! -d "$(ANDROID_SDK_DIR)" ] || $(RM) -r $(ANDROID_SDK_DIR)
|
|
|
|
.PHONY: android_sdk_update
|
|
android_sdk_update:
|
|
$(V0) @echo " UPDATE $(ANDROID_SDK_DIR)"
|
|
$(ANDROID_SDK_DIR)/tools/android update sdk --no-ui -t platform-tools,android-16,addon-google_apis-google-16
|
|
|
|
# Set up Google Test (gtest) tools
|
|
GTEST_DIR := $(TOOLS_DIR)/gtest-1.6.0
|
|
|
|
.PHONY: gtest_install
|
|
gtest_install: | $(DL_DIR) $(TOOLS_DIR)
|
|
gtest_install: GTEST_URL := http://googletest.googlecode.com/files/gtest-1.6.0.zip
|
|
gtest_install: GTEST_FILE := $(notdir $(GTEST_URL))
|
|
gtest_install: gtest_clean
|
|
# download the file unconditionally since google code gives back 404
|
|
# for HTTP HEAD requests which are used when using the wget -N option
|
|
$(V1) [ ! -f "$(DL_DIR)/$(GTEST_FILE)" ] || $(RM) -f "$(DL_DIR)/$(GTEST_FILE)"
|
|
$(V1) $(WGET) -P "$(DL_DIR)" --trust-server-name "$(GTEST_URL)"
|
|
|
|
# extract the source
|
|
$(V1) [ ! -d "$(GTEST_DIR)" ] || $(RM) -rf "$(GTEST_DIR)"
|
|
$(V1) mkdir -p "$(GTEST_DIR)"
|
|
$(V1) unzip -q -d "$(TOOLS_DIR)" "$(DL_DIR)/$(GTEST_FILE)"
|
|
|
|
.PHONY: gtest_clean
|
|
gtest_clean:
|
|
$(V0) @echo " CLEAN $(GTEST_DIR)"
|
|
$(V1) [ ! -d "$(GTEST_DIR)" ] || $(RM) -rf "$(GTEST_DIR)"
|