diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 20:57:38 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 20:57:38 +0000 |
commit | 620515ab4e66b45f9440cf04a1fa61869275170f (patch) | |
tree | 4acce4f19447ce789254e3ba213d894481a76adc /Makefile.in | |
parent | cd08b15c28d27843722fc26cdf6f77f9082efe62 (diff) | |
download | nasm-620515ab4e66b45f9440cf04a1fa61869275170f.tar.gz nasm-620515ab4e66b45f9440cf04a1fa61869275170f.tar.bz2 nasm-620515ab4e66b45f9440cf04a1fa61869275170f.zip |
NASM 0.98p6
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 35bf95c..b991991 100644 --- a/Makefile.in +++ b/Makefile.in @@ -20,6 +20,8 @@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ +NROFF = @NROFF@ + .c.o: $(CC) -c $(CFLAGS) $< @@ -30,7 +32,7 @@ NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o \ NDISASM = ndisasm.o disasm.o sync.o nasmlib.o insnsd.o -all: nasm ndisasm +all: nasm ndisasm nasm.man nasm: $(NASM) $(CC) -o nasm $(NASM) @@ -80,6 +82,9 @@ insnsa.c insnsd.c insnsi.h insnsn.c: insns.dat insns.pl macros.c: standard.mac macros.pl perl $(srcdir)/macros.pl $(srcdir)/standard.mac +nasm.man: nasm.1 + $(NROFF) -man nasm.1 > nasm.man + install: nasm ndisasm $(INSTALL_PROGRAM) nasm $(bindir)/nasm $(INSTALL_PROGRAM) ndisasm $(bindir)/ndisasm @@ -95,7 +100,7 @@ distclean: clean cd rdoff; $(MAKE) distclean cleaner: clean - rm -f insnsa.c insnsd.c insnsi.h insnsn.c macros.c + rm -f insnsa.c insnsd.c insnsi.h insnsn.c macros.c nasm.man spotless: distclean cleaner |