From 07b7b9e15efef5f19389a09fb65601b2a0c6ba13 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 29 May 2008 19:09:11 -0700 Subject: Implement -MD, -MF, -MT, -MQ Implement the dependency options: -MF: set the file to which dependencies are written. -MD: generate dependencies in parallel with compilation. -MT: set the name of the dependency target. -MQ: same as -MT, but *attempt* to quote it for Makefile safety. --- nasm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nasm.h') diff --git a/nasm.h b/nasm.h index b1f05116..4c7b3386 100644 --- a/nasm.h +++ b/nasm.h @@ -291,7 +291,7 @@ typedef expr *(*evalfunc) (scanner sc, void *scprivate, #define EXPR_SEGBASE (EXPR_REG_END+4) /* - * Preprocessors ought to look like this: + * preprocessors ought to look like this: */ typedef struct preproc_ops { /* @@ -299,7 +299,7 @@ typedef struct preproc_ops { * of the pass, an error reporting function, an evaluator * function, and a listing generator to talk to. */ - void (*reset) (char *, int, efunc, evalfunc, ListGen *); + void (*reset) (char *, int, efunc, evalfunc, ListGen *, FILE *); /* * Called to fetch a line of preprocessed source. The line -- cgit v1.2.1