Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0
2uname_M := $(shell uname -m 2>/dev/null || echo not)
3ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/)
4ifeq ($(ARCH),i386)
5 ARCH := x86
6 CFLAGS := -DCONFIG_X86_32 -D__i386__
7endif
8ifeq ($(ARCH),x86_64)
9 ARCH := x86
10 CFLAGS := -DCONFIG_X86_64 -D__x86_64__
11endif
12
13CFLAGS += $(KHDR_INCLUDES)
14
15TEST_GEN_PROGS := msgque
16
17include ../lib.mk
18