summaryrefslogtreecommitdiff
path: root/serverboot/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'serverboot/Makefile')
-rw-r--r--serverboot/Makefile15
1 files changed, 6 insertions, 9 deletions
diff --git a/serverboot/Makefile b/serverboot/Makefile
index c4d37430..967ca33f 100644
--- a/serverboot/Makefile
+++ b/serverboot/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1997,99,2001 Free Software Foundation, Inc.
+# Copyright (C) 1997,99,2001,02 Free Software Foundation, Inc.
# This file is part of the GNU Hurd.
#
# The GNU Hurd is free software; you can redistribute it and/or modify
@@ -18,13 +18,14 @@
dir := serverboot
makemode := utility
-SRCS = bootstrap.c ffs_compat.c load.c wiring.c def_pager_setup.c \
- ffs_file_io.c minix_ffs_compat.c default_pager.c file_io.c\
- minix_file_io.c ext2_file_io.c kalloc.c strfcns.c exec.c \
+SRCS = bootstrap.c ffs_compat.c load.c wiring.c \
+ ffs_file_io.c minix_ffs_compat.c file_io.c\
+ minix_file_io.c ext2_file_io.c strfcns.c exec.c \
panic.c elf-load.c gunzip.c bunzip2.c
LCLHDRS = assert.h disk_inode_ffs.h fs.h queue.h defs.h \
minix_ffs_compat.h wiring.h dir.h ffs_compat.h minix_fs.h \
disk_inode.h file_io.h minix_super.h mach-exec.h
+EXTRA_DIST = def_pager_setup.c default_pager.c kalloc.c
target = serverboot
HURDLIBS = threads
installationdir = $(bootdir)
@@ -32,9 +33,7 @@ installationdir = $(bootdir)
UNZIP_OBJS = unzip.o inflate.o util.o do-bunzip2.o
OBJS = $(subst .c,.o,$(SRCS)) \
boot_script.o userland-boot.o \
- memory_objectServer.o \
- default_pagerServer.o excServer.o bootstrapServer.o \
- memory_object_defaultServer.o $(UNZIP_OBJS)
+ $(UNZIP_OBJS)
vpath boot_script.c $(srcdir)/../boot
vpath userland-boot.c $(srcdir)/../boot
@@ -45,8 +44,6 @@ VPATH += $(srcdir)/../exec
# It's crucial for serverboot, because swap is not enabled yet.
CPPFLAGS += -I$(srcdir)/../exec -DGZIP -DBZIP2 -DSMALL_BZIP2
-MIGSFLAGS = -DSEQNOS
-
LDFLAGS += -static
include ../Makeconf