Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: kernel/rules.mk

Issue 1437453002: [kernel][ports] Add basic ports functionality (Closed) Base URL: https://github.com/travisg/lk.git@master
Patch Set: fix Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « kernel/port.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 LOCAL_DIR := $(GET_LOCAL_DIR) 1 LOCAL_DIR := $(GET_LOCAL_DIR)
2 2
3 MODULE := $(LOCAL_DIR) 3 MODULE := $(LOCAL_DIR)
4 4
5 MODULE_DEPS := \ 5 MODULE_DEPS := \
6 lib/libc \ 6 lib/libc \
7 lib/debug \ 7 lib/debug \
8 lib/heap 8 lib/heap
9 9
10 MODULE_SRCS := \ 10 MODULE_SRCS := \
11 $(LOCAL_DIR)/debug.c \ 11 $(LOCAL_DIR)/debug.c \
12 $(LOCAL_DIR)/event.c \ 12 $(LOCAL_DIR)/event.c \
13 $(LOCAL_DIR)/init.c \ 13 $(LOCAL_DIR)/init.c \
14 $(LOCAL_DIR)/mutex.c \ 14 $(LOCAL_DIR)/mutex.c \
15 $(LOCAL_DIR)/thread.c \ 15 $(LOCAL_DIR)/thread.c \
16 $(LOCAL_DIR)/timer.c \ 16 $(LOCAL_DIR)/timer.c \
17 $(LOCAL_DIR)/semaphore.c \ 17 $(LOCAL_DIR)/semaphore.c \
18 » $(LOCAL_DIR)/mp.c 18 » $(LOCAL_DIR)/mp.c \
19 » $(LOCAL_DIR)/port.c
19 20
20 ifeq ($(WITH_KERNEL_VM),1) 21 ifeq ($(WITH_KERNEL_VM),1)
21 MODULE_DEPS += kernel/vm 22 MODULE_DEPS += kernel/vm
22 else 23 else
23 MODULE_DEPS += kernel/novm 24 MODULE_DEPS += kernel/novm
24 endif 25 endif
25 26
26 include make/module.mk 27 include make/module.mk
OLDNEW
« no previous file with comments | « kernel/port.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698