diff options
Diffstat (limited to 'Makefile.bc2')
-rw-r--r-- | Makefile.bc2 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.bc2 b/Makefile.bc2 index f160fad..d2e9b52 100644 --- a/Makefile.bc2 +++ b/Makefile.bc2 @@ -71,7 +71,7 @@ DASM_ASM=$(CC) $(DCCFLAGS) $&.c #command line for NDISASM NASMOBJS = $(OBJD)nasm.$(OBJ) $(OBJD)nasmlib.$(OBJ) $(OBJD)float.$(OBJ) \ $(OBJD)insnsa.$(OBJ) $(OBJD)assemble.$(OBJ) $(OBJD)labels.$(OBJ) \ - $(OBJD)parser.$(OBJ) $(OBJD)outform.$(OBJ) + $(OBJD)parser.$(OBJ) $(OBJD)outform.$(OBJ) $(OBJD)preproc.$(OBJ) ################################################################ #The OBJ files that NDISASM is dependent on @@ -133,6 +133,9 @@ $(OBJD)nasmlib.$(OBJ): nasmlib.c nasm.h nasmlib.h $(OBJD)parser.$(OBJ): parser.c nasm.h nasmlib.h parser.h float.h names.c $(NASM_ASM) +$(OBJD)preproc.$(OBJ): preproc.c macros.c preproc.h nasm.h nasmlib.h + $(NASM_ASM) + $(OBJD)insnsa.$(OBJ): insnsa.c nasm.h insns.h $(NASM_ASM) |