diff options
author | Roland McGrath <roland@gnu.org> | 1995-04-05 21:25:53 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-04-05 21:25:53 +0000 |
commit | 1677badb89403bfea78a8adc602cdbdd1f6f0663 (patch) | |
tree | 12741a67c64cded522fb0c547e430ab621c34a32 | |
parent | f9720d8b686749a1ed99c5e1944d37186093ac6d (diff) |
(SRCS): Add syscall.S.
(OBJS): Add syscall.o.
-rw-r--r-- | boot/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/boot/Makefile b/boot/Makefile index 86ffac3a..9cb2811d 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1993, 1994 Free Software Foundation, Inc. +# Copyright (C) 1993, 1994, 1995 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,9 +18,9 @@ dir := boot makemode := utility -SRCS = boot.c tcattr.c sigvec.S +SRCS = boot.c tcattr.c sigvec.S syscall.S OBJS = boot.o notifyServer.o execServer.o ourdeviceServer.o ioServer.o \ - io_replyUser.o device_replyUser.o sigvec.o \ + io_replyUser.o device_replyUser.o sigvec.o syscall.o \ termServer.o tcattr.o bootstrapServer.o HURDLIBS = libthreads target = boot |