diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-23 17:43:54 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-23 17:43:54 +0000 |
commit | 66f269d2a51dae6a2cb10f1a9ae4aaeba815219b (patch) | |
tree | e2094832990caf6d849ba90e4b1a82a6264f86b3 /ldso/man/Makefile | |
parent | c4a3f3f81ea90e3df93c352ac0e2161a4bfd3327 (diff) |
Initial checkin for ld.so. This is a combination of effort from Manuel Novoa
III and me. I've been working on stripping out arch dependant stuff and
replacing it with generic stuff whenever possible.
-Erik
Diffstat (limited to 'ldso/man/Makefile')
-rw-r--r-- | ldso/man/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ldso/man/Makefile b/ldso/man/Makefile new file mode 100644 index 000000000..a701e1513 --- /dev/null +++ b/ldso/man/Makefile @@ -0,0 +1,11 @@ +include ../Config.mk + +ALL = #ld.so.info + +all: $(ALL) + +ld.so.info: ld.so.texi + makeinfo $< + +clean: + rm -f $(ALL) *~ |