From f43aedac2323cfad88fc4ac53b2c7d9597623e2c Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Mon, 9 May 2016 14:14:11 -0700 Subject: .gitignore: add .s and .i files .s and .i files can be generated during debugging. Signed-off-by: H. Peter Anvin --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index f64b70af..83236c59 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *.bin *.dbg *.exe +*.i *.lst *.o *.o64 @@ -9,8 +10,9 @@ *.orig *.out *.rej -*.xml +*.s *.swp +*.xml .*swo *~ \#* -- cgit v1.2.1 From 407166001c2df8ef32aae708ff797b069a0d398b Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Mon, 16 May 2016 20:30:09 -0700 Subject: Fix building in a separate directory from the source code The code to handle building in a separate directory had seriously bitrotted. This contains a number of fixes to make it possible, including bits like the documentation which never worked in the past. Signed-off-by: H. Peter Anvin --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 83236c59..dc2879f8 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,7 @@ TAGS /doc/*.txt /doc/Makefile /doc/inslist.src +/doc/version.src /doc/html /doc/info /insnsa.c @@ -52,7 +53,7 @@ TAGS /nasm.1 /ndisasm /ndisasm.man -/nasm.1 +/ndisasm.1 /pptok.c /pptok.h /pptok.ph -- cgit v1.2.1