Update for newer RH releases
[nasm/avx512.git] / Mkfiles / Makefile.dos
bloba890541a9ee5daffca0c22f13079e6137118fd3f
1 # Makefile for the Netwide Assembler under 16-bit DOS
3 # The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4 # Julian Hall. All rights reserved. The software is
5 # redistributable under the licence given in the file "Licence"
6 # distributed in the NASM archive.
8 # This Makefile is designed to build NASM using a 16-bit DOS C
9 # compiler such as Microsoft C, provided you have a compatible MAKE.
10 # It's been tested with Microsoft C 5.x plus Borland Make. (Yes, I
11 # know it's silly, but...)
13 CC = cl /c /O /AL /Gt
14 QCL = qcl /c /AL /Gt
15 LINK = cl
16 LINKFLAGS =
17 LIBRARIES =
18 EXE = .exe#
19 OBJ = obj#
21 .c.$(OBJ):
22         $(CC) $*.c
24 NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
25            assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \
26            output/outbin.$(OBJ) output/outaout.$(OBJ) output/outcoff.$(OBJ) output/outelf.$(OBJ) \
27            output/outobj.$(OBJ) output/outas86.$(OBJ) output/outrdf.$(OBJ) output/outrdf2.$(OBJ) \
28            output/outieee.$(OBJ) output/outdbg.$(OBJ) preproc.$(OBJ) listing.$(OBJ) \
29            eval.$(OBJ)
31 NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
32               insnsd.$(OBJ)
34 all : nasm$(EXE) ndisasm$(EXE)
36 # We have to have a horrible kludge here to get round the 128 character
37 # limit, as usual...
38 LINKOBJS = a*.obj e*.obj f*.obj insnsa.obj l*.obj na*.obj o*.obj p*.obj
39 nasm$(EXE): $(NASMOBJS)
40         cl /Fenasm.exe /F 4000 $(LINKOBJS)
42 ndisasm$(EXE): $(NDISASMOBJS)
43         cl /Fendisasm.exe $(NDISASMOBJS)
45 # Another grotty hack: QC is less likely to run out of memory than
46 # CL proper; and we don't need any optimisation in these modules
47 # since they're just data.
48 insnsa.$(OBJ): insnsa.c nasm.h version.h insnsi.h insns.h
49         $(QCL) insnsa.c
50 insnsd.$(OBJ): insnsd.c nasm.h version.h insnsi.h insns.h
51         $(QCL) insnsd.c
53 clean :
54         del *.obj
55         del nasm$(EXE)
56         del ndisasm$(EXE)
58 #-- Magic hints to mkdep.pl --#
59 # @object-ending: ".$(OBJ)"
60 # @path-separator: "/"
61 #-- Everything below is generated by mkdep.pl - do not edit --#
62 assemble.$(OBJ): assemble.c insns.h assemble.h regvals.c nasm.h regs.h \
63  insnsi.h nasmlib.h version.h
64 disasm.$(OBJ): disasm.c insns.h regs.c sync.h names.c nasm.h disasm.h regs.h \
65  insnsn.c insnsi.h version.h regdis.c
66 eval.$(OBJ): eval.c nasm.h regs.h labels.h nasmlib.h version.h eval.h
67 float.$(OBJ): float.c nasm.h regs.h version.h
68 insnsa.$(OBJ): insnsa.c insns.h nasm.h regs.h insnsi.h version.h
69 insnsd.$(OBJ): insnsd.c insns.h nasm.h regs.h insnsi.h version.h
70 insnsn.$(OBJ): insnsn.c
71 labels.$(OBJ): labels.c nasm.h regs.h nasmlib.h version.h
72 listing.$(OBJ): listing.c listing.h nasm.h regs.h nasmlib.h version.h
73 macros.$(OBJ): macros.c
74 names.$(OBJ): names.c regs.c insnsn.c
75 nasm.$(OBJ): nasm.c listing.h preproc.h insns.h outform.h assemble.h \
76  parser.h nasm.h regs.h labels.h insnsi.h nasmlib.h version.h eval.h
77 nasmlib.$(OBJ): nasmlib.c insns.h regs.c names.c nasm.h regs.h insnsn.c \
78  insnsi.h nasmlib.h version.h
79 ndisasm.$(OBJ): ndisasm.c insns.h sync.h nasm.h disasm.h regs.h insnsi.h \
80  nasmlib.h version.h
81 outform.$(OBJ): outform.c outform.h nasm.h regs.h version.h
82 output/outaout.$(OBJ): output/outaout.c outform.h nasm.h regs.h nasmlib.h \
83  version.h
84 output/outas86.$(OBJ): output/outas86.c outform.h nasm.h regs.h nasmlib.h \
85  version.h
86 output/outbin.$(OBJ): output/outbin.c outform.h nasm.h regs.h nasmlib.h \
87  version.h
88 output/outcoff.$(OBJ): output/outcoff.c outform.h nasm.h regs.h nasmlib.h \
89  version.h
90 output/outdbg.$(OBJ): output/outdbg.c outform.h nasm.h regs.h nasmlib.h \
91  version.h
92 output/outelf.$(OBJ): output/outelf.c outform.h nasm.h regs.h nasmlib.h \
93  version.h
94 output/outieee.$(OBJ): output/outieee.c outform.h nasm.h regs.h nasmlib.h \
95  version.h
96 output/outobj.$(OBJ): output/outobj.c outform.h nasm.h regs.h nasmlib.h \
97  version.h
98 output/outrdf.$(OBJ): output/outrdf.c outform.h nasm.h regs.h nasmlib.h \
99  version.h
100 output/outrdf2.$(OBJ): output/outrdf2.c outform.h nasm.h regs.h nasmlib.h \
101  version.h
102 parser.$(OBJ): parser.c insns.h parser.h nasm.h regs.h insnsi.h regflags.c \
103  float.h nasmlib.h version.h
104 preproc.$(OBJ): preproc.c nasm.h macros.c regs.h nasmlib.h version.h
105 regdis.$(OBJ): regdis.c
106 regflags.$(OBJ): regflags.c
107 regs.$(OBJ): regs.c
108 regvals.$(OBJ): regvals.c
109 sync.$(OBJ): sync.c sync.h