如何使用gyp生成“make install”动作?

时间:2014-12-03 09:28:32

标签: build makefile install gyp

我正在使用gyp为我的项目生成makefile。 Makefile工作,导致工作二进制文件弹出“out”目录,所有这些都很花哨。

但是,我希望我的makefile有一些“标准”动作/目标,即“安装”“卸载”和“干净”。

我已经为.gyp文件添加了“安装”目标,但我怀疑这是否是正确的方法,特别是似乎没有办法从make中的“all”中排除“install”目标使用gyp。

我也想知道是否有工具为gyp生成./configure文件,或者是否应该由开发人员编写并且只运行带有一些必需选项的gyp。

将这些目标(“install”...)添加到gyp生成的makefile的正确方法是什么?是否可以这样制作,一旦指定,这些操作也可以与其他构建系统一起使用? (忍者等)

1 个答案:

答案 0 :(得分:0)

我发现这样做的最好方法是在项目目录的子目录中生成带有gyp的makefile,然后用" install"," clean"手动编写makefile。执行由gyp生成的Makefile的目标。

为了确保使用正确的参数调用gyp,我从./configure

调用它

目录结构:

+ build
    |- Makefile (generated by gyp)
|- Makefile (written by hand)
|- configure (written by hand)
|- build.gyp (written by hand)

./配置:

#!/bin/bash

PREFIX=/usr/local
BUILDTYPE=Release


for i in "$@"
do
        case $i in
            -p=*|--prefix=*)
            PREFIX="${i#*=}"

            ;;
        esac
        case $i in
            -b=*|--buildtype=*)
            BUILDTYPE="${i#*=}"

            ;;
        esac
done
gyp -D prefix="$PREFIX" -D configuration="$BUILDTYPE" --depth=. --generator-output=./build -f make

echo -e "prefix=$PREFIX\n" > ./config.mk

生成文件:

include config.mk

prefix ?= /usr/local

builddir=build/out
abs_builddir := $(abspath $(builddir))

all: config.mk
    $(MAKE) -C "./build" builddir="$(abs_builddir)"

binaries=$(prefix)/bin/foo $(prefix)/bin/bar

$(binaries): $(prefix)/bin/%: $(builddir)/%
    cp $< $@

install: $(binaries) $(directories)

# $(directories), uninstall, clean, .PHONY, etc.

build.gyp:

{
    'variables': {
    },
    'target_defaults': {
        // (...)
    },
    'targets': [
        {
            'target_name': 'foo',
            'type': 'executable',
            'defines': [],
            'include_dirs':[ 
                'src/headers'
            ],
            'sources': [ 
                'src/foo.c'
            ],
            'libraries': [
                '-lcrypto'
            ]
        },
        // (...)
    ]
}

然后,我需要做的就是安装经典而且无法模仿:

./configure --prefix="/home/me/local_builds"
make
make install