brintos

brintos / linux-shallow public Read only

0
0
Text · 382 B · 50e9c29 Raw
19 lines · plain
1# SPDX-License-Identifier: GPL-2.02uname_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 := x866	CFLAGS := -DCONFIG_X86_32 -D__i386__7endif8ifeq ($(ARCH),x86_64)9	ARCH := x8610	CFLAGS := -DCONFIG_X86_64 -D__x86_64__11endif12 13CFLAGS += $(KHDR_INCLUDES)14 15TEST_GEN_PROGS := msgque16 17include ../lib.mk18 19