blob: dc211d94cd0b8b701f996f9d0695f1054ba98581 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
machine-y := sandbox
machdirs := $(patsubst %,arch/sandbox/mach-%/,$(machine-y))
ifeq ($(KBUILD_SRC),)
CPPFLAGS := $(patsubst %,-I%include,$(machdirs))
else
CPPFLAGS = $(patsubst %,-I$(srctree)/%include,$(machdirs))
endif
CFLAGS := -Wall
NOSTDINC_FLAGS :=
obj-y = common.o tap.o
|