diff options
Diffstat (limited to 'Makefrag.am')
-rw-r--r-- | Makefrag.am | 35 |
1 files changed, 21 insertions, 14 deletions
diff --git a/Makefrag.am b/Makefrag.am index 2ed9f771..a99f822e 100644 --- a/Makefrag.am +++ b/Makefrag.am @@ -4,13 +4,14 @@ include doc/Makefrag.am EXTRA_DIST += tools/qemu.sh x15_SOURCES += \ + include/assert.h \ + include/limits.h \ include/stdio.h \ include/string.h x15_SOURCES += \ kern/arg.c \ kern/arg.h \ - kern/assert.h \ kern/atomic.h \ kern/bitmap.c \ kern/bitmap.h \ @@ -28,7 +29,11 @@ x15_SOURCES += \ kern/error.c \ kern/error.h \ kern/hash.h \ + kern/fmt.c \ + kern/fmt.h \ + kern/init.c \ kern/init.h \ + kern/init_i.h \ kern/intr.c \ kern/intr.h \ kern/kernel.c \ @@ -36,14 +41,16 @@ x15_SOURCES += \ kern/kmem.c \ kern/kmem.h \ kern/kmem_i.h \ - kern/limits.h \ kern/list.h \ kern/list_types.h \ kern/llsync.c \ kern/llsync.h \ kern/llsync_i.h \ + kern/log.c \ + kern/log.h \ kern/log2.h \ kern/macros.h \ + kern/mutex.c \ kern/mutex.h \ kern/mutex_types.h \ kern/mutex/mutex_adaptive_i.h \ @@ -54,7 +61,6 @@ x15_SOURCES += \ kern/mutex/mutex_plain_types.h \ kern/panic.c \ kern/panic.h \ - kern/param.h \ kern/percpu.c \ kern/percpu.h \ kern/plist.c \ @@ -75,16 +81,14 @@ x15_SOURCES += \ kern/semaphore.c \ kern/semaphore.h \ kern/semaphore_i.h \ - kern/shell.c \ - kern/shell.h \ + kern/shutdown.c \ + kern/shutdown.h \ kern/sleepq.c \ kern/sleepq.h \ kern/spinlock.c \ kern/spinlock.h \ kern/spinlock_i.h \ kern/spinlock_types.h \ - kern/sprintf.c \ - kern/sprintf.h \ kern/sref.c \ kern/sref.h \ kern/sref_i.h \ @@ -115,6 +119,12 @@ if !MUTEX_PI endif endif +if X15_SHELL +x15_SOURCES += \ + kern/shell.c \ + kern/shell.h +endif X15_SHELL + x15_SOURCES += \ vm/vm_adv.h \ vm/vm_inherit.h \ @@ -122,11 +132,12 @@ x15_SOURCES += \ vm/vm_kmem.h \ vm/vm_map.c \ vm/vm_map.h \ + vm/vm_object.c \ + vm/vm_object.h \ + vm/vm_object_types.h \ vm/vm_page.c \ vm/vm_page.h \ - vm/vm_prot.h \ - vm/vm_setup.c \ - vm/vm_setup.h + vm/vm_prot.h x15_SOURCES += \ test/test.h @@ -159,10 +170,6 @@ if TEST_VM_PAGE_FILL x15_SOURCES += test/test_vm_page_fill.c endif TEST_VM_PAGE_FILL -if TEST_X86_DOUBLE_FAULT -x15_SOURCES += test/test_x86_double_fault.c -endif TEST_X86_DOUBLE_FAULT - if TEST_XCALL x15_SOURCES += test/test_xcall.c endif TEST_XCALL |