From 38a4805625fb6aebf46e7d4b82ea142e873e07c2 Mon Sep 17 00:00:00 2001 From: Christian Lamparter Date: Wed, 25 May 2011 00:48:27 +0200 Subject: [PATCH] carl9170 firmware: update build system to accommodate for new cmake config Signed-off-by: Christian Lamparter --- CMakeLists.txt | 2 -- autogen.sh | 8 +++++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 51d6265..c017bbb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,8 +7,6 @@ project(carl9170) include("config.cmake") -file(MAKE_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/include/generated") - add_subdirectory(carlfw) if (CONFIG_CARL9170FW_BUILD_MINIBOOT) diff --git a/autogen.sh b/autogen.sh index 8a47b51..873fb74 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,19 +1,21 @@ -#!/bin/sh +#!/bin/bash set -e case "$1" in config) echo "Configuring..." + pushd config cmake . - make -C config + make + popd config/conf Kconfig + cmake . ;; compile) echo "Compile time..." make - ;; install) -- 2.31.1