Makefile.dj
资源名称:nasm-0.98.zip [点击查看]
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:3k
源码类别:
编译器/解释器
开发平台:
C/C++
- # host: dos
- # target: dos 32bit
- # Makefile for the Netwide Assembler
- #
- # 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
- # You may need to adjust these values.
- CC = gcc
- CFLAGS = -O2 -I.
- # You _shouldn't_ need to adjust anything below this line.
- .c.o:
- $(CC) -c $(CFLAGS) $*.c
- NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o
- parser.o outform.o outbin.o outaout.o outcoff.o outelf.o
- outobj.o outas86.o outrdf.o outdbg.o preproc.o listing.o
- eval.o outrdf2.o zoutieee.o
- NDISASM = ndisasm.o disasm.o sync.o nasmlib.o insnsd.o
- all: nasm.exe ndisasm.exe
- nasm.exe: $(NASM)
- $(CC) -o $@ $(NASM)
- ndisasm.exe: $(NDISASM)
- $(CC) -o $@ $(NDISASM)
- assemble.o: assemble.c nasm.h insnsi.h nasmlib.h assemble.h insns.h
- disasm.o: disasm.c nasm.h insnsi.h disasm.h sync.h insns.h names.c insnsn.c
- eval.o: eval.c eval.h nasm.h insnsi.h nasmlib.h
- float.o: float.c nasm.h insnsi.h
- insnsa.o: insnsa.c nasm.h insnsi.h insns.h
- insnsd.o: insnsd.c nasm.h insnsi.h insns.h
- labels.o: labels.c nasm.h insnsi.h nasmlib.h
- listing.o: listing.c nasm.h insnsi.h nasmlib.h listing.h
- nasm.o: nasm.c nasm.h insnsi.h nasmlib.h preproc.h parser.h assemble.h labels.h
- outform.h listing.h
- nasmlib.o: nasmlib.c nasm.h insnsi.h nasmlib.h names.c insnsn.c
- ndisasm.o: ndisasm.c nasm.h insnsi.h nasmlib.h sync.h disasm.h
- outaout.o: outaout.c nasm.h insnsi.h nasmlib.h outform.h
- outas86.o: outas86.c nasm.h insnsi.h nasmlib.h outform.h
- outbin.o: outbin.c nasm.h insnsi.h nasmlib.h outform.h
- outcoff.o: outcoff.c nasm.h insnsi.h nasmlib.h outform.h
- outdbg.o: outdbg.c nasm.h insnsi.h nasmlib.h outform.h
- outelf.o: outelf.c nasm.h insnsi.h nasmlib.h outform.h
- outform.o: outform.c outform.h nasm.h insnsi.h
- outobj.o: outobj.c nasm.h insnsi.h nasmlib.h outform.h
- outrdf.o: outrdf.c nasm.h insnsi.h nasmlib.h outform.h
- outrdf2.o: outrdf2.c nasm.h insnsi.h nasmlib.h outform.h
- zoutieee.o: zoutieee.c nasm.h insnsi.h nasmlib.h outform.h
- parser.o: parser.c nasm.h insnsi.h nasmlib.h parser.h float.h names.c insnsn.c
- preproc.o: preproc.c nasm.h insnsi.h nasmlib.h macros.c
- sync.o: sync.c sync.h
- # These 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
- # 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
- perl macros.pl standard.mac
- clean:
- rm -f *.o nasm ndisasm