diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-06-05 02:00:32 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-06-05 02:00:32 +0000 |
commit | cb387b25d318025c67c422d509253d824a7764f1 (patch) | |
tree | 671b4093bcce8ffe84524a4b52be00fb762274f6 /console/Makefile | |
parent | 94d1c5884949b21303e66b80c00c1690ec0d9d60 (diff) |
2002-06-05 Marcus Brinkmann <marcus@gnu.org>
* input.h: New file.
* input.c: Likewise.
* console.h: Likewise.
* console.c: Likewise.
* display.h: New development version.
* display.c: Likewise.
* Makefile (SRCS): Replace with files for new console server.
(LCLHDRS): Likewise.
(HURDLIBS): Likewise.
(OBJS): Likewise.
Diffstat (limited to 'console/Makefile')
-rw-r--r-- | console/Makefile | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/console/Makefile b/console/Makefile index a5de1e49..2e227269 100644 --- a/console/Makefile +++ b/console/Makefile @@ -22,13 +22,21 @@ dir := console makemode := server target = console -SRCS = main.c vcons.c focus.c vga-display.c vga.c dynafont.c bdf.c -LCLHDRS = focus.h input-drv.h vcons.h display-drv.h vga.h vga-hw.h dynafont.h bdf.h \ - mutations.h priv.h -HURDLIBS = trivfs fshelp iohelp threads ports ihash shouldbeinlibc -OBJS = $(subst .c,.o,$(SRCS)) tioctlServer.o +SRCS = console.c display.c input.c +LCLHDRS = console.h display.h input.h -MIGSFLAGS += -imacros $(srcdir)/mutations.h +HURDLIBS = netfs fshelp iohelp threads ports ihash shouldbeinlibc +OBJS = $(subst .c,.o,$(SRCS)) + +# This is the old monolithic version of the console server. +#SRCS = main.c vcons.c focus.c vga-display.c vga.c dynafont.c bdf.c +#LCLHDRS = focus.h input-drv.h vcons.h display-drv.h vga.h vga-hw.h \ +# dynafont.h bdf.h mutations.h priv.h +# +#HURDLIBS = trivfs fshelp iohelp threads ports ihash shouldbeinlibc +#OBJS = $(subst .c,.o,$(SRCS)) tioctlServer.o +# +#MIGSFLAGS += -imacros $(srcdir)/mutations.h include ../Makeconf |