Provide 64-bit support for ORG directive
[nasm/avx512.git] / Mkfiles / Makefile.sc
blob6a080b50fd4b00fba7b613735a9394ef1155fb28
1 # Makefile for the Netwide Assembler under 32-bit DOS(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.
12 CC = sc
13 CCFLAGS = -c -a1 -mx -Nc -w2 -w7 -o+time -5
14 # -5            optimize for pentium (tm)
15 # -c            compile only
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
26 LINK = link
27 LINKFLAGS = /noi /exet:DOSX
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)
33 LIBRARIES =
34 EXE = .exe
35 OBJ = obj
37 .c.$(OBJ):
38         $(CC) $(CCFLAGS) $*.c
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/outrdf2.$(OBJ) \
50            output/outieee.$(OBJ) output/outdbg.$(OBJ) \
51            preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ)
53 NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \
54               insnsd.$(OBJ)
58 # programs to create
61 all : nasm$(EXE) ndisasm$(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 nasm$(EXE): $(NASMOBJS)
69         $(LINK) $(LINKFLAGS) @<<
70 cx.obj $(NASMOBJS)
71 nasm.exe
74 ndisasm$(EXE): $(NDISASMOBJS)
75         $(LINK) $(LINKFLAGS) @<<
76 cx.obj $(NDISASMOBJS)
77 ndisasm.exe
81 # modules for programs
83 clean :
84         del *.obj
85         del nasm$(EXE)
86         del ndisasm$(EXE)
88 #-- Magic hints to mkdep.pl --#
89 # @object-ending: ".$(OBJ)"
90 # @path-separator: "/"
91 #-- Everything below is generated by mkdep.pl - do not edit --#
92 assemble.$(OBJ): assemble.c preproc.h insns.h regs.h regflags.c config.h \
93  version.h nasmlib.h nasm.h regvals.c insnsi.h assemble.h
94 disasm.$(OBJ): disasm.c insns.h sync.h regdis.c regs.h config.h regs.c \
95  version.h nasm.h insnsn.c names.c insnsi.h disasm.h
96 eval.$(OBJ): eval.c labels.h eval.h regs.h config.h version.h nasmlib.h \
97  nasm.h
98 float.$(OBJ): float.c regs.h config.h version.h nasm.h
99 insnsa.$(OBJ): insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
100 insnsd.$(OBJ): insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
101 insnsn.$(OBJ): insnsn.c
102 labels.$(OBJ): labels.c regs.h config.h version.h nasmlib.h nasm.h
103 listing.$(OBJ): listing.c regs.h config.h version.h nasmlib.h nasm.h \
104  listing.h
105 macros.$(OBJ): macros.c
106 names.$(OBJ): names.c regs.c insnsn.c
107 nasm.$(OBJ): nasm.c labels.h preproc.h insns.h parser.h eval.h regs.h \
108  outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h insnsi.h \
109  listing.h
110 nasmlib.$(OBJ): nasmlib.c insns.h regs.h config.h regs.c version.h nasmlib.h \
111  nasm.h insnsn.c names.c insnsi.h
112 ndisasm.$(OBJ): ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
113  nasm.h insnsi.h disasm.h
114 outform.$(OBJ): outform.c regs.h config.h outform.h version.h nasm.h
115 output/outaout.$(OBJ): output/outaout.c regs.h outform.h config.h version.h \
116  nasmlib.h nasm.h stdscan.h
117 output/outas86.$(OBJ): output/outas86.c regs.h outform.h config.h version.h \
118  nasmlib.h nasm.h
119 output/outbin.$(OBJ): output/outbin.c labels.h eval.h regs.h outform.h \
120  config.h version.h nasmlib.h nasm.h stdscan.h
121 output/outcoff.$(OBJ): output/outcoff.c regs.h outform.h config.h version.h \
122  nasmlib.h nasm.h
123 output/outdbg.$(OBJ): output/outdbg.c regs.h outform.h config.h version.h \
124  nasmlib.h nasm.h
125 output/outelf32.$(OBJ): output/outelf32.c regs.h outform.h config.h \
126  version.h nasmlib.h nasm.h stdscan.h
127 output/outelf64.$(OBJ): output/outelf64.c regs.h outform.h config.h \
128  version.h nasmlib.h nasm.h stdscan.h
129 output/outieee.$(OBJ): output/outieee.c regs.h outform.h config.h version.h \
130  nasmlib.h nasm.h
131 output/outmacho.$(OBJ): output/outmacho.c compiler.h regs.h outform.h \
132  config.h version.h nasmlib.h nasm.h
133 output/outobj.$(OBJ): output/outobj.c regs.h outform.h config.h version.h \
134  nasmlib.h nasm.h stdscan.h
135 output/outrdf.$(OBJ): output/outrdf.c regs.h outform.h config.h version.h \
136  nasmlib.h nasm.h
137 output/outrdf2.$(OBJ): output/outrdf2.c rdoff/rdoff.h regs.h outform.h \
138  config.h version.h nasmlib.h nasm.h
139 parser.$(OBJ): parser.c insns.h parser.h float.h regs.h regflags.c config.h \
140  version.h nasmlib.h nasm.h stdscan.h insnsi.h
141 preproc.$(OBJ): preproc.c macros.c regs.h config.h version.h nasmlib.h \
142  nasm.h
143 regdis.$(OBJ): regdis.c
144 regflags.$(OBJ): regflags.c
145 regs.$(OBJ): regs.c
146 regvals.$(OBJ): regvals.c
147 stdscan.$(OBJ): stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
148  stdscan.h insnsi.h
149 sync.$(OBJ): sync.c sync.h
150 tokhash.$(OBJ): tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h