This includes defaulting to yapp for ./yasm -e passes.
svn path=/trunk/yasm/; revision=482
/* If not already specified, default to raw preproc. */
if (!cur_preproc)
- cur_preproc = find_preproc("raw");
+ cur_preproc = find_preproc("yapp");
assert(cur_preproc != NULL);
/* Pre-process until done */
/* Available preprocessors */
extern preproc raw_preproc;
+extern preproc yapp_preproc;
/* Finds a preproc based on its keyword. Returns NULL if no match was found.
*/
# $IdPath$
EXTRA_DIST += \
- src/preprocs/raw/Makefile.inc
+ src/preprocs/raw/Makefile.inc \
+ src/preprocs/yapp/Makefile.inc
YASMPREPROCFILES =
include src/preprocs/raw/Makefile.inc
+include src/preprocs/yapp/Makefile.inc
yasm_SOURCES += $(YASMPREPROCFILES)
/* If not already specified, default to raw preproc. */
if (!cur_preproc)
- cur_preproc = find_preproc("raw");
+ cur_preproc = find_preproc("yapp");
assert(cur_preproc != NULL);
/* Pre-process until done */
/*@-nullassign@*/
static preproc *preprocs[] = {
&raw_preproc,
+ &yapp_preproc,
NULL
};
/*@=nullassign@*/
/* Available preprocessors */
extern preproc raw_preproc;
+extern preproc yapp_preproc;
/* Finds a preproc based on its keyword. Returns NULL if no match was found.
*/
# $IdPath$
EXTRA_DIST += \
- src/preprocs/raw/Makefile.inc
+ src/preprocs/raw/Makefile.inc \
+ src/preprocs/yapp/Makefile.inc
YASMPREPROCFILES =
include src/preprocs/raw/Makefile.inc
+include src/preprocs/yapp/Makefile.inc
yasm_SOURCES += $(YASMPREPROCFILES)