summaryrefslogtreecommitdiff
path: root/Mkfiles/Makefile.djo
blob: feff6f881f1903884dbe844abd0c8398654e3939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# host: dos
# target: dos 16bit and 32bit
# Makefile for the Netwide Assembler
#
# This is a modification (by John Fine) of makefile.dj
#
# It uses the syntax of "Opus Make", which is the make program I prefer.
#
# It builds two targets:
#
# nasm.exe    32-bit built with DJGPP
# ndisasm.exe NASM disassembler (DJGPP version)

.SUFFIXES:
.SUFFIXES: .exe .ol .o .obj .c .dat .pl

# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
# Julian Hall. All rights reserved. The software is
# redistributable under the licence given in the file "Licence"
# distributed in the NASM archive.

# makefile designed for djgpp 2.xx
# djgpp is GNU C compiler ported by mighty DJ Delorie
# www.delorie.com and any simtel mirror

CC = gcc
CFLAGS = -O3

.c.o:
#	redir -eo $(CC) -g -c -O2 -finline-functions -Wall -ansi -pedantic $*.c >$*.err
	$(CC) -g -c -O2 -finline-functions -Wall -ansi -pedantic $*.c

NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o \
       parser.o outform.o output/outbin.o output/outaout.o output/outcoff.o \
       output/outelf32.o output/outelf64.o \
       output/outobj.o output/outas86.o output/outrdf.o output/outrdf2.o output/outieee.o output/outdbg.o preproc.o listing.o \
       eval.o

NDISASM = ndisasm.o disasm.o sync.o nasmlib.o insnsd.o

nasm.exe: $(NASM)
	$(CC) @<<
-s -o $@ $(NASM)
<<
	djp nasm.exe

ndisasm.exe: $(NDISASM)
	$(CC) @<<
-s -o $@ $(NDISASM)
<<
	djp ndisasm.exe

# These four source files are automagically generated from a single
# instruction-table file by a Perl script. They're distributed,
# though, so it isn't necessary to have Perl just to recompile NASM
# from the distribution.

insnsa.c insnsd.c insnsi.h insnsn.c: insns.dat insns.pl
	perl insns.pl insns.dat

# These files contains all the standard macros that are derived from
# the version number.
version.h: version version.pl
	perl $(srcdir)/version.pl h < $(srcdir)/version > version.h

version.mac: version version.pl
	perl $(srcdir)/version.pl mac < $(srcdir)/version > version.mac

# This source file is generated from the standard macros file
# `standard.mac' by another Perl script. Again, it's part of the
# standard distribution.

macros.c: standard.mac macros.pl version.mac
	perl macros.pl standard.mac version.mac

# These source files are generated from regs.dat by yet another
# perl script.
regs.c: regs.dat regs.pl
	perl regs.pl c regs.dat > regs.c
regflags.c: regs.dat regs.pl
	perl regs.pl fc regs.dat > regflags.c
regdis.c: regs.dat regs.pl
	perl regs.pl dc regs.dat > regdis.c
regvals.c: regs.dat regs.pl
	perl regs.pl vc regs.dat > regvals.c
regs.h: regs.dat regs.pl
	perl regs.pl h regs.dat > regs.h

clean:
	rm -f *.o nasm ndisasm

#-- Magic hints to mkdep.pl --#
# @object-ending: ".o"
# @path-separator: "/"
#-- Everything below is generated by mkdep.pl - do not edit --#
assemble.o: assemble.c preproc.h insns.h pptok.h regs.h regflags.c config.h \
 version.h nasmlib.h nasm.h regvals.c assemble.h insnsi.h
crc64.o: crc64.c
disasm.o: disasm.c insns.h sync.h regdis.c regs.h config.h regs.c version.h \
 nasm.h insnsn.c names.c insnsi.h disasm.h
eval.o: eval.c labels.h eval.h regs.h config.h version.h nasmlib.h nasm.h \
 insnsi.h
float.o: float.c regs.h config.h version.h nasm.h insnsi.h
hashtbl.o: hashtbl.c regs.h config.h version.h nasmlib.h hashtbl.h nasm.h \
 insnsi.h
insnsa.o: insnsa.c insns.h regs.h config.h version.h nasm.h insnsi.h
insnsd.o: insnsd.c insns.h regs.h config.h version.h nasm.h insnsi.h
insnsn.o: insnsn.c
labels.o: labels.c regs.h config.h version.h hashtbl.h nasmlib.h nasm.h \
 insnsi.h
listing.o: listing.c regs.h config.h version.h nasmlib.h nasm.h insnsi.h \
 listing.h
macros.o: macros.c
names.o: names.c regs.c insnsn.c
nasm.o: nasm.c labels.h preproc.h insns.h parser.h eval.h pptok.h regs.h \
 outform.h config.h version.h nasmlib.h nasm.h stdscan.h assemble.h insnsi.h \
 listing.h
nasmlib.o: nasmlib.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
 insnsi.h
ndisasm.o: ndisasm.c insns.h sync.h regs.h config.h version.h nasmlib.h \
 nasm.h insnsi.h disasm.h
outform.o: outform.c regs.h config.h outform.h version.h nasm.h insnsi.h
output/outaout.o: output/outaout.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h stdscan.h insnsi.h
output/outas86.o: output/outas86.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h insnsi.h
output/outbin.o: output/outbin.c labels.h eval.h regs.h outform.h config.h \
 version.h nasmlib.h nasm.h stdscan.h insnsi.h
output/outcoff.o: output/outcoff.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h insnsi.h
output/outdbg.o: output/outdbg.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h insnsi.h
output/outelf32.o: output/outelf32.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h stdscan.h insnsi.h
output/outelf64.o: output/outelf64.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h stdscan.h insnsi.h
output/outieee.o: output/outieee.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h insnsi.h
output/outmacho.o: output/outmacho.c compiler.h regs.h outform.h config.h \
 version.h nasmlib.h nasm.h insnsi.h
output/outobj.o: output/outobj.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h stdscan.h insnsi.h
output/outrdf.o: output/outrdf.c regs.h outform.h config.h version.h \
 nasmlib.h nasm.h insnsi.h
output/outrdf2.o: output/outrdf2.c rdoff/rdoff.h regs.h outform.h config.h \
 version.h nasmlib.h nasm.h insnsi.h
parser.o: parser.c insns.h parser.h float.h regs.h regflags.c config.h \
 version.h nasmlib.h nasm.h stdscan.h insnsi.h
pptok.o: pptok.c preproc.h pptok.h nasmlib.h
preproc.o: preproc.c preproc.h macros.c pptok.h regs.h config.h version.h \
 hashtbl.h nasmlib.h nasm.h insnsi.h
regdis.o: regdis.c
regflags.o: regflags.c
regs.o: regs.c
regvals.o: regvals.c
stdscan.o: stdscan.c insns.h regs.h config.h version.h nasmlib.h nasm.h \
 stdscan.h insnsi.h
sync.o: sync.c sync.h
tokhash.o: tokhash.c insns.h regs.h config.h version.h nasm.h insnsi.h