summaryrefslogtreecommitdiff
path: root/Makefrag.am
blob: b0c1fed8e6820e6c152463cf9edcbe193452ec50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
# 'arch/xxx' sources
#
include arch/x86/Makefrag.am

#
# 'kern/' sources
#
x15_SOURCES += \
	kern/init.h \
	kern/kernel.c \
	kern/kernel.h \
	kern/kmem.c \
	kern/kmem.h \
	kern/panic.c \
	kern/panic.h \
	kern/printk.c \
	kern/printk.h

#
# 'lib/' sources
#
x15_SOURCES += \
	lib/assert.h \
	lib/limits.h \
	lib/list.h \
	lib/macros.h \
	lib/rbtree.c \
	lib/rbtree.h \
	lib/rbtree_i.h \
	lib/sprintf.c \
	lib/sprintf.h \
	lib/stddef.h \
	lib/stdint.h \
	lib/string.c \
	lib/string.h

#
# 'vm/' sources
#
x15_SOURCES += \
	vm/vm_kmem.c \
	vm/vm_kmem.h \
	vm/vm_map.c \
	vm/vm_map.h \
	vm/vm_page.h \
	vm/vm_param.h \
	vm/vm_phys.c \
	vm/vm_phys.h \
	vm/vm_setup.c \
	vm/vm_setup.h \
	vm/vm_types.h