+1998-07-14 Mark Kettenis <kettenis@phys.uva.nl>
+
+ * mach/Makefile: Create target directory before generating
+ mach-syscalls.mk.
+ * mach/Machrules: Invoke awk using AWK variable. Create target
+ directory before generating server stubs.
+
1998-07-14 Ulrich Drepper <drepper@cygnus.com>
* wcsmbs/wcslen.c (__wcslen): Fix comment.
# intermediate in order to make %.ir and then removed before re-exec, when
# %.uh is built all over again to build %.h.
$(objpfx)%.ir: $(objpfx)%.uh $(objpfx)%.h
- (awk "NF == 4 && (\$$2 == \"Routine\" || \$$2 == \"SimpleRoutine\")\
+ ($(AWK) "NF == 4 && (\$$2 == \"Routine\" || \$$2 == \"SimpleRoutine\")\
{ printf \"$*-calls += %s\\n\", \$$3 }" $< ;\
echo '$$($*-calls:%=$$(objpfx)R\%C_%.c): $$(objpfx)$*.ustamp ;';\
) > $@-new
# Build the server stubs in $(objdir).
$(objpfx)%_server.c $(objpfx)%_server.h:
+ $(make-target-directory)
$(include-%.defs) | \
$(MIG) - /dev/null -prefix _S_ \
$(MIGFLAGS) $(server-MIGFLAGS) $(MIGFLAGS-$*) \
-# Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
+# Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# The GNU C Library is free software; you can redistribute it and/or
endif
$(objpfx)mach-syscalls.mk: syscalls.awk Makefile
# Go kludges!!!
+ $(make-target-directory)
echo '#include <mach/syscall_sw.h>' | \
DEPENDENCIES_OUTPUT='$@-dep $@' \
$(CC) $(CPPFLAGS) -E -x c-header - \