首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Minix 3.2.1 Makefile问题

Minix 3.2.1 Makefile问题
EN

Stack Overflow用户
提问于 2017-03-27 03:46:56
回答 1查看 564关注 0票数 0

我试图用下面的Makefile运行make,但我得到了下面的错误Makefile:2: *** missing separator. Stop.。这个Makefile是Minix 3.2.1中的原始文件。我没有做任何改变。我从标签问题中进行检查。有人能帮我吗?

谢谢。

代码语言:javascript
复制
# Makefile for the kernel image.
.include <bsd.own.mk>
.include "nbsd.config"

.include <bsd.own.mk>
.include <bsd.sys.mk>

u=/usr
MDEC=   /usr/mdec
GEN_FILES=  *.bak image kernel *.iso *.iso.gz cdfdimage rootimage src

# LSC detect where were built the objects files
PROGROOT:= ..
.if "${MAKEOBJDIR:S,${.CURDIR},,}" != ""
PROGROOT:= ${MAKEOBJDIR:S,releasetools,,}
.endif

# Specify the programs that are part of the system image.
KERNEL= ${PROGROOT}/kernel/kernel
# PROGRAMS are in the order they should be loaded by boot
PROGRAMS+= ${PROGROOT}/servers/ds/ds
PROGRAMS+= ${PROGROOT}/servers/rs/rs
PROGRAMS+= ${PROGROOT}/servers/pm/pm
PROGRAMS+= ${PROGROOT}/servers/sched/sched
PROGRAMS+= ${PROGROOT}/servers/vfs/vfs
PROGRAMS+= ${PROGROOT}/drivers/memory/memory
.if ${MACHINE_ARCH} == "i386"
PROGRAMS+= ${PROGROOT}/drivers/log/log
.endif
PROGRAMS+= ${PROGROOT}/drivers/tty/tty
PROGRAMS+= ${PROGROOT}/servers/mfs/mfs
PROGRAMS+= ${PROGROOT}/servers/vm/vm
PROGRAMS+= ${PROGROOT}/servers/pfs/pfs
PROGRAMS+= ${PROGROOT}/servers/init/init

usage:  
    @echo " " >&2
    @echo "Master Makefile to create new MINIX configuration." >& 2
    @echo "Root privileges are required." >&2
    @echo " " >&2
    @echo "Usage:" >&2
    @echo " make includes   # Install include files" >&2
    @echo " make depend     # Generate dependency files" >&2
    @echo " make services   # Compile and install all services" >&2
    @echo " make install    # Make image, and install to hard disk" >&2
    @echo " make hdboot     # Make image, and install to hard disk" >&2
    @echo " make bootable   # Make hard disk bootable" >&2
    @echo " make nbsd_fetch # Download current NetBSD reference sources" >&2
    @echo " make nbsd_diff  # Update minix-port.patch in NetBSD sources" >&2
    @echo " make clean      # Remove all compiler results, except libs" >&2
    @echo " " >&2
    @echo "To create a fresh MINIX configuration, try:" >&2
    @echo " make clean install      # new boot image" >&2
    @echo " make fresh install      # new everything" >&2
    @echo " " >&2

all: services

# rebuild the program or system libraries
includes:
    $(MAKE) -C ../ includes

depend: includes .gitignore
    $(MAKE) -C ../ depend

.gitignore: Makefile
    echo $(GEN_FILES) | tr ' ' '\n' >.gitignore

services: includes kernel servers .WAIT drivers

kernel: includes
    $(MAKE) -C ../kernel 

servers: includes
    $(MAKE) -C ../servers all install

drivers: includes servers
    $(MAKE) -C ../drivers all install

# make bootable and place system images
bootable:
    exec su root mkboot bootable ${DESTDIR}

hdboot: services .WAIT do-hdboot

do-hdboot: 
    @rm -rf ${DESTDIR}/boot/minix/.temp/
    ${INSTALL_DIR} ${DESTDIR}/boot/minix/.temp
# mod_0 is used to make alphabetical order equal to the boot order
    @n=0;                           \
    for i in ${PROGRAMS};                   \
    do                          \
    n=`expr $$n + 1`;                   \
    [ "$$n" -ge 10 ] && prefix="mod" || prefix="mod0";  \
    newname="${DESTDIR}/boot/minix/.temp/$${prefix}$${n}_`basename $$i`"; \
    ${INSTALL} $$i $$newname;               \
    done
    @cp ${PROGROOT}/kernel/kernel ${DESTDIR}/boot/minix/.temp/
    @if [ "${MKINSTALLBOOT:Uno}" != "no" ] ; then       \
    ${STRIP} -s ${DESTDIR}/boot/minix/.temp/* ;     \
    gzip ${DESTDIR}/boot/minix/.temp/mod* ;         \
    ${HOST_SH} mkboot hdboot ${DESTDIR};            \
    ${HOST_SH} ../commands/update_bootcfg/update_bootcfg.sh;\
    else                            \
    ${INSTALL_DIR} ${DESTDIR}/multiboot;            \
    ${INSTALL} ${DESTDIR}/boot/minix/.temp/* ${DESTDIR}/multiboot;  \
    fi

install:
    ${MAKE} includes services hdboot

# download and update NetBSD reference sources.
nbsd_fetch:
    export CVS_RSH=ssh;                             \
    export OLDPWD=`pwd`;                            \
    echo "retrieving hierarchies from ${NBSD_CVSROOT}";         \
    IFS=,;                                  \
    cd ..;                                  \
    cat releasetools/nbsd_ports | grep -v '^#' | while read port ;      \
    do  set $$port;                         \
        date=$$1; minixpath=$$2; origpath=$$3;              \
        if [ $$# -lt 3 ]; then origpath=$$2; fi;            \
        echo "retrieving $$origpath ..";                \
        cvs -q -d ${NBSD_CVSROOT} co -N -D "$$date UTC" -d nbsdsrc "src/$$origpath" ; \
    done;                                   \
    cd $${OLDPWD};

nbsd_diff:
    find .. -name minix-port.patch | xargs rm
    cat nbsd_ports | grep -v '^#' | \
    ( cd .. && awk -F, '{ minixpath=$$2; origpath=$$3; if(NF < 3) { origpath=$$2; } system("sh releasetools/nbsd_diff.sh " \
       "nbsdsrc/src/"origpath" "minixpath" "minixpath"/minix-port.patch");}' )
    find .. -name minix-port.patch | xargs wc -l | sort -n


# clean up compile results
clean:
    $(MAKE) -C ../kernel $@
    $(MAKE) -C ../servers $@
    $(MAKE) -C ../drivers $@
    rm -rf $(GEN_FILES)

cleandepend::
    $(MAKE) -C ../kernel $@
    $(MAKE) -C ../servers  $@
    $(MAKE) -C ../drivers  $@
EN

回答 1

Stack Overflow用户

发布于 2017-04-25 00:08:00

MINIX使用BSD make,它通常使用.作为其特定扩展名的前缀。您安装了GNU make,它有另一组扩展,没有以.为前缀;此外,您将GNU make放在PATH顺序的前面,而没有对其进行重命名。这是行不通的。

我们通常要做的就是将GNU命名为gmakegnumake,并在需要时以该名称调用它(例如,编译来自GNU生态系统的包,或者有很强的make偏好)。

您可以考虑的另一种可能性是安装(如果尚未安装) bmake包,并在尝试编译需要make的BSD类型的程序时使用该命令(这包括MINIX本身)。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/43033689

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档