Document change to -g internals
[nasm/avx512.git] / Mkfiles / Makefile.dj
blobb13c3ff66398e9b34528f61225683f0ab592bde7
1 # host: dos
2 # target: dos 32bit
3 # Makefile for the Netwide Assembler
5 # The Netwide Assembler is copyright (C) 1996 Simon Tatham and
6 # Julian Hall. All rights reserved. The software is
7 # redistributable under the licence given in the file "Licence"
8 # distributed in the NASM archive.
10 # makefile designed for djgpp 2.xx
11 # djgpp is GNU C compiler ported by mighty DJ Delorie
12 # www.delorie.com and any simtel mirror
14 # You may need to adjust these values.
16 CC = gcc
17 CFLAGS = -O2 -I.
19 # You _shouldn't_ need to adjust anything below this line.
21 .c.o:
22         $(CC) -c $(CFLAGS) -o $@ $*.c
24 NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o \
25        parser.o outform.o output/outbin.o output/outaout.o output/outcoff.o output/outelf.o \
26        output/outobj.o output/outas86.o output/outrdf.o output/outdbg.o preproc.o listing.o \
27        eval.o output/outrdf2.o output/outieee.o
29 NDISASM = ndisasm.o disasm.o sync.o nasmlib.o insnsd.o
31 all: nasm.exe ndisasm.exe
33 nasm.exe: $(NASM)
34         $(CC) -o $@ $(NASM)
36 ndisasm.exe: $(NDISASM)
37         $(CC) -o $@ $(NDISASM)
39 # These source files are automagically generated from a single
40 # instruction-table file by a Perl script. They're distributed,
41 # though, so it isn't necessary to have Perl just to recompile NASM
42 # from the distribution.
44 insnsa.c: insns.dat insns.pl
45         perl insns.pl -a insns.dat
46 insnsd.c: insns.dat insns.pl
47         perl insns.pl -d insns.dat
48 insnsi.h: insns.dat insns.pl
49         perl insns.pl -i insns.dat
50 insnsn.c: insns.dat insns.pl
51         perl insns.pl -n insns.dat
53 # These files contains all the standard macros that are derived from
54 # the version number.
55 version.h: version version.pl
56         perl version.pl h < version > version.h
58 version.mac: version version.pl
59         perl version.pl mac < version > version.mac
61 # This source file is generated from the standard macros file
62 # `standard.mac' by another Perl script. Again, it's part of the
63 # standard distribution.
65 macros.c: macros.pl standard.mac version.mac
66         perl macros.pl standard.mac version.mac
68 # These source files are generated from regs.dat by yet another
69 # perl script.
70 regs.c: regs.dat regs.pl
71         perl regs.pl c regs.dat > regs.c
72 regflags.c: regs.dat regs.pl
73         perl regs.pl fc regs.dat > regflags.c
74 regdis.c: regs.dat regs.pl
75         perl regs.pl dc regs.dat > regdis.c
76 regvals.c: regs.dat regs.pl
77         perl regs.pl vc regs.dat > regvals.c
78 regs.h: regs.dat regs.pl
79         perl regs.pl h regs.dat > regs.h
81 clean:
82         rm -f *.o *.exe output/*.o
84 #-- Magic hints to mkdep.pl --#
85 # @object-ending: ".o"
86 # @path-separator: "/"
87 #-- Everything below is generated by mkdep.pl - do not edit --#
88 assemble.o: assemble.c insns.h assemble.h regvals.c nasm.h regs.h insnsi.h \
89  nasmlib.h version.h
90 disasm.o: disasm.c insns.h regs.c sync.h names.c nasm.h disasm.h regs.h \
91  insnsn.c insnsi.h version.h regdis.c
92 eval.o: eval.c nasm.h regs.h labels.h nasmlib.h version.h eval.h
93 float.o: float.c nasm.h regs.h version.h
94 insnsa.o: insnsa.c insns.h nasm.h regs.h insnsi.h version.h
95 insnsd.o: insnsd.c insns.h nasm.h regs.h insnsi.h version.h
96 insnsn.o: insnsn.c
97 labels.o: labels.c nasm.h regs.h nasmlib.h version.h
98 listing.o: listing.c listing.h nasm.h regs.h nasmlib.h version.h
99 macros.o: macros.c
100 names.o: names.c regs.c insnsn.c
101 nasm.o: nasm.c listing.h preproc.h insns.h outform.h assemble.h parser.h \
102  nasm.h regs.h labels.h insnsi.h nasmlib.h version.h eval.h
103 nasmlib.o: nasmlib.c insns.h regs.c names.c nasm.h regs.h insnsn.c insnsi.h \
104  nasmlib.h version.h
105 ndisasm.o: ndisasm.c insns.h sync.h nasm.h disasm.h regs.h insnsi.h \
106  nasmlib.h version.h
107 outform.o: outform.c outform.h nasm.h regs.h version.h
108 output/outaout.o: output/outaout.c outform.h nasm.h regs.h nasmlib.h \
109  version.h
110 output/outas86.o: output/outas86.c outform.h nasm.h regs.h nasmlib.h \
111  version.h
112 output/outbin.o: output/outbin.c outform.h nasm.h regs.h nasmlib.h version.h
113 output/outcoff.o: output/outcoff.c outform.h nasm.h regs.h nasmlib.h \
114  version.h
115 output/outdbg.o: output/outdbg.c outform.h nasm.h regs.h nasmlib.h version.h
116 output/outelf.o: output/outelf.c outform.h nasm.h regs.h nasmlib.h version.h
117 output/outieee.o: output/outieee.c outform.h nasm.h regs.h nasmlib.h \
118  version.h
119 output/outobj.o: output/outobj.c outform.h nasm.h regs.h nasmlib.h version.h
120 output/outrdf.o: output/outrdf.c outform.h nasm.h regs.h nasmlib.h version.h
121 output/outrdf2.o: output/outrdf2.c outform.h nasm.h regs.h nasmlib.h \
122  version.h
123 parser.o: parser.c insns.h parser.h nasm.h regs.h insnsi.h regflags.c \
124  float.h nasmlib.h version.h
125 preproc.o: preproc.c nasm.h macros.c regs.h nasmlib.h version.h
126 regdis.o: regdis.c
127 regflags.o: regflags.c
128 regs.o: regs.c
129 regvals.o: regvals.c
130 sync.o: sync.c sync.h