Commit 95442bb3 authored by Alexandre Belloni's avatar Alexandre Belloni Committed by Peter Korsgaard
Browse files

Normalize separator size to 80 in remaining makefiles

parent 31d72937
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -193,11 +193,11 @@ BUILD_DIR:=$(BASE_DIR)/build

ifeq ($(BR2_HAVE_DOT_CONFIG),y)

#############################################################
################################################################################
#
# Hide troublesome environment variables from sub processes
#
#############################################################
################################################################################
unexport CROSS_COMPILE
unexport ARCH
unexport CC
@@ -212,12 +212,12 @@ unexport TERMINFO

GNU_HOST_NAME:=$(shell support/gnuconfig/config.guess)

##############################################################
################################################################################
#
# The list of stuff to build for the target toolchain
# along with the packages to build for the target.
#
##############################################################
################################################################################

ifeq ($(BR2_CCACHE),y)
BASE_TARGETS += host-ccache
@@ -296,12 +296,12 @@ export HOST_DIR
export BINARIES_DIR
export BASE_DIR

#############################################################
################################################################################
#
# You should probably leave this stuff alone unless you know
# what you are doing.
#
#############################################################
################################################################################

all: world

@@ -408,12 +408,12 @@ world: toolchain $(TARGETS_ALL)
	$(TOOLCHAIN_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
	$(HOST_DIR) $(BINARIES_DIR) $(STAMP_DIR)

#############################################################
################################################################################
#
# staging and target directories do NOT list these as
# dependencies anywhere else
#
#############################################################
################################################################################
$(TOOLCHAIN_DIR) $(BUILD_DIR) $(HOST_DIR) $(BINARIES_DIR) $(STAMP_DIR) $(LEGAL_INFO_DIR) $(REDIST_SOURCES_DIR):
	@mkdir -p $@

@@ -716,11 +716,11 @@ source-check:

.PHONY: defconfig savedefconfig

#############################################################
################################################################################
#
# Cleanup and misc junk
#
#############################################################
################################################################################

# outputmakefile generates a Makefile in the output directory, if using a
# separate output directory. This allows convenient use of make in the
+2 −2
Original line number Diff line number Diff line
@@ -36,11 +36,11 @@ $(BINARIES_DIR)/rootfs.iso9660: host-cdrkit host-fakeroot linux rootfs-cpio grub

rootfs-iso9660: $(BINARIES_DIR)/rootfs.iso9660

#############################################################
################################################################################
#
# Toplevel Makefile options
#
#############################################################
################################################################################
ifeq ($(BR2_TARGET_ROOTFS_ISO9660),y)
TARGETS+=rootfs-iso9660
endif
+2 −2
Original line number Diff line number Diff line
##################################################
################################################################################
# Linux RTAI extensions
#
# Patch the linux kernel with RTAI extension
##################################################
################################################################################

ifeq ($(BR2_LINUX_KERNEL_EXT_RTAI),y)
# Add dependency to RTAI (user-space) which provide kernel patches
+2 −2
Original line number Diff line number Diff line
##################################################
################################################################################
# Linux Adeos/Xenomai extensions
#
# Patch the linux kernel with xenomai extension
##################################################
################################################################################

ifeq ($(BR2_LINUX_KERNEL_EXT_XENOMAI),y)
# Add dependency to xenomai (user-space) which provide ksrc part
+2 −2
Original line number Diff line number Diff line
###############################################################################
################################################################################
#
# Linux kernel target
#
###############################################################################
################################################################################

LINUX_VERSION=$(call qstrip,$(BR2_LINUX_KERNEL_VERSION))
LINUX_LICENSE = GPLv2
Loading