1 # Makefile for the Netwide Assembler under 32-bit Windows(tm)
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 the 32-bit WIN32 C
9 # compiler Symantec(tm) C++ 7.5, provided you have a MAKE-utility
10 # that's compatible to SMAKE.
13 CCFLAGS = -c -a1 -mn -Nc -w2 -w7 -o+time -5
14 # -5 optimize for pentium (tm)
16 # -o-all no optimizations (to avoid problems in disasm.c)
17 # -o+time optimize for speed
18 # -o+space optimize for size
19 # -A1 byte alignment for structures
20 # -mn compile for Win32 executable
21 # -mx compile for DOS386 (DOSX) executable
22 # -Nc create COMDAT records
23 # -w2 possible unattended assignment: off
24 # -w7 for loops with empty instruction-body
27 LINKFLAGS = /noi /exet:NT /su:console
28 # /noignorecase all symbols are case-sensitive
29 # /exet:NT Exetype: NT (Win32)
30 # /exet:DOSX Exetype: DOSX (DOS32)
31 # /su:console Subsystem: Console (Console-App)
42 # modules needed for different programs
45 NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \
46 assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \
47 output/outbin.$(OBJ) output/outaout.$(OBJ) output/outcoff.$(OBJ) \
48 output/outelf32.$(OBJ) output/outelf64.$(OBJ) \
49 output/outobj.$(OBJ) output/outas86.$(OBJ) output/outrdf.$(OBJ) output/outdbg.$(OBJ) \
50 output/outrdf2.$(OBJ) output/outieee.$(OBJ) \
51 preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ)
53 NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
61 all : nasmw$(EXE) ndisasmw$(EXE)
65 # We have to have a horrible kludge here to get round the 128 character
66 # limit, as usual... we'll simply use LNK-files :)
68 nasmw$(EXE): $(NASMOBJS)
69 $(LINK) $(LINKFLAGS) @<<
74 ndisasmw$(EXE): $(NDISASMOBJS)
75 $(LINK) $(LINKFLAGS) @<<
85 #-- Magic hints to mkdep.pl --#
86 # @object-ending: ".$(OBJ)"
87 # @path-separator: "/"
88 #-- Everything below is generated by mkdep.pl - do not edit --#
89 assemble.$(OBJ): assemble.c preproc.h insns.h regs.h regflags.c config.h \
90 version.h nasmlib.h nasm.h regvals.c insnsi.h assemble.h
91 disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
92 version.h nasm.h insnsn.c names.c insnsi.h disasm.h
93 eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
95 float.$(OBJ): float.c regs.h config.h version.h nasm.h
96 insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
97 insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
98 insnsn.$(OBJ): insnsn.c
99 labels.$(OBJ): labels.c regs.h config.h version.h nasmlib.h nasm.h
100 listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
102 macros.$(OBJ): macros.c
103 names.$(OBJ): names.c regs.c insnsn.c
104 nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h regs.h \
105 outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h insnsi.h \
107 nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h regs.c version.h nasmlib.h \
108 nasm.h insnsn.c names.c insnsi.h
109 ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
110 nasm.h insnsi.h disasm.h
111 outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h
112 output/outaout.$(OBJ): output/outaout.c regs.h outform.h config.h version.h \
113 nasmlib.h nasm.h stdscan.h
114 output/outas86.$(OBJ): output/outas86.c regs.h outform.h config.h version.h \
116 output/outbin.$(OBJ): output/outbin.c labels.h eval.h regs.h outform.h \
117 config.h version.h nasmlib.h nasm.h stdscan.h
118 output/outcoff.$(OBJ): output/outcoff.c regs.h outform.h config.h version.h \
120 output/outdbg.$(OBJ): output/outdbg.c regs.h outform.h config.h version.h \
122 output/outelf32.$(OBJ): output/outelf32.c regs.h outform.h config.h \
123 version.h nasmlib.h nasm.h stdscan.h
124 output/outelf64.$(OBJ): output/outelf64.c regs.h outform.h config.h \
125 version.h nasmlib.h nasm.h stdscan.h
126 output/outieee.$(OBJ): output/outieee.c regs.h outform.h config.h version.h \
128 output/outmacho.$(OBJ): output/outmacho.c compiler.h regs.h outform.h \
129 config.h version.h nasmlib.h nasm.h
130 output/outobj.$(OBJ): output/outobj.c regs.h outform.h config.h version.h \
131 nasmlib.h nasm.h stdscan.h
132 output/outrdf.$(OBJ): output/outrdf.c regs.h outform.h config.h version.h \
134 output/outrdf2.$(OBJ): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
135 config.h version.h nasmlib.h nasm.h
136 parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
137 version.h nasmlib.h nasm.h stdscan.h insnsi.h
138 preproc.$(OBJ): preproc.c macros.c regs.h config.h version.h nasmlib.h \
140 regdis.$(OBJ): regdis.c
141 regflags.$(OBJ): regflags.c
143 regvals.$(OBJ): regvals.c
144 stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
146 sync.$(OBJ): sync.c sync.h
147 tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h