diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-05-20 14:42:53 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-05-20 14:42:53 -0700 |
commit | 0c648204e2599958dffd8d4375b6b220980990eb (patch) | |
tree | 019f855af877eb6491dd7298985cb7f650269654 /Mkfiles | |
parent | d1dab0f720496147a5d8d7736cbe0c72857b5e98 (diff) | |
download | nasm-0c648204e2599958dffd8d4375b6b220980990eb.tar.gz nasm-0c648204e2599958dffd8d4375b6b220980990eb.tar.bz2 nasm-0c648204e2599958dffd8d4375b6b220980990eb.zip |
openwcom.mak: wmake uses & for continuation, not \ (sigh)
wmake uses & for continuation, since \ is used for pathname
separators.
Diffstat (limited to 'Mkfiles')
-rw-r--r-- | Mkfiles/openwcom.mak | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mkfiles/openwcom.mak b/Mkfiles/openwcom.mak index 205a7be..a7cf59c 100644 --- a/Mkfiles/openwcom.mak +++ b/Mkfiles/openwcom.mak @@ -143,9 +143,9 @@ pptok.c: pptok.dat pptok.pl perllib/phash.ph # This target generates all files that require perl. # This allows easier generation of distribution (see dist target). -PERLREQ = macros.c insnsb.c insnsa.c insnsd.c insnsi.h insnsn.c \ - regs.c regs.h regflags.c regdis.c regdis.h regvals.c \ - tokhash.c tokens.h pptok.h pptok.c \ +PERLREQ = macros.c insnsb.c insnsa.c insnsd.c insnsi.h insnsn.c & + regs.c regs.h regflags.c regdis.c regdis.h regvals.c & + tokhash.c tokens.h pptok.h pptok.c & version.h version.mac perlreq: $(PERLREQ) |