From ccc4092e238c5e074a32e2c5794ab01934f272df Mon Sep 17 00:00:00 2001 From: Marcus Brinkmann Date: Thu, 13 Jun 2002 00:24:26 +0000 Subject: 2002-06-13 Marcus Brinkmann * Makefile (DIST_FILES): New target. (MIGSTUBS): Likewise. (OBJS): Add $(MIGSTUBS). * ourfs_notify.defs: New file. * console.c: Diddle order of typedefs. (netfs_attempt_read): Clip AMT to bytes left to read before calling display_read. (netfs_S_file_notice_changes): New function. * console.h: Include , not . Change all types from u_int32_t to uint32_t. * display.c: Include and "outfs_notify_U.h". Change all u_int_32 types to uint32_t. (struct modreq): New structure. (struct display): New member filemod_reqs. (free_modreqs): New function. (display_notice_changes): Likewise. (display_notice_filechange): Likewise. (display_destroy): Free filemod_reqs member of DISPLAY. (MATRIX_POS): Macro removed. (screen_fill): Rewritten. (screen_shift_left): New function. (screen_shift_right): Likewise. (screen_scroll_up): Function removed. (screen_scroll_down): Likewise. (screen_scroll_left): Likewise. (screen_scroll_right): Likewise. (handle_esc_bracket): Use new screen_* functions. (display_output_one): Store old cursor and screen attributes, and if they have been changed, send file change notifications. * display.h: New prototype for display_notice_changes. --- console/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'console/Makefile') diff --git a/console/Makefile b/console/Makefile index 2e227269..2f15f1a1 100644 --- a/console/Makefile +++ b/console/Makefile @@ -25,9 +25,12 @@ target = console SRCS = console.c display.c input.c LCLHDRS = console.h display.h input.h +DIST_FILES = ourfs_notify.defs + +MIGSTUBS = ourfs_notifyUser.o HURDLIBS = netfs fshelp iohelp threads ports ihash shouldbeinlibc -OBJS = $(subst .c,.o,$(SRCS)) +OBJS = $(sort $(SRCS:.c=.o) $(MIGSTUBS)) # 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 -- cgit v1.2.3