blob: 5992b06287fd215727a96c1bf9a9363044d03a18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*- makefile -*- : Force emacs to use Makefile mode
# Starting virtual address
#
LDFLAGS += -Ttext=0x08048000
# Compiler flags for building host API wrapper
#
LINUX_CFLAGS += -m32
# Include generic Linux Makefile
#
MAKEDEPS += arch/x86/Makefile.linux
include arch/x86/Makefile.linux
|