Skip to content

Commit 09d4cd0

Browse files
committed
Fix missing files in 23f3db8
1 parent 91c95a2 commit 09d4cd0

File tree

5 files changed

+113
-357
lines changed

5 files changed

+113
-357
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@ Makefile.config
2828
/ocamlbuild.native
2929

3030
/man/ocamlbuild.1
31+
/man/ocamlbuild.options.1
3132
/man/options_man.byte

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,13 +191,13 @@ beforedepend:: src/ocamlbuild_config.ml
191191
man: man/ocamlbuild.1
192192

193193
man/ocamlbuild.1: man/ocamlbuild.header.1 man/ocamlbuild.options.1 man/ocamlbuild.footer.1
194-
cat man/ocamlbuild.{header,options,footer}.1 > man/ocamlbuild.1
194+
cat $^ > man/ocamlbuild.1
195195

196196
man/ocamlbuild.options.1: man/options_man.byte
197197
./man/options_man.byte > man/ocamlbuild.options.1
198198

199199
clean::
200-
rm -f man/ocamlbuild.options.1
200+
rm -f man/ocamlbuild.options.1 man/ocamlbuild.1
201201

202202
man/options_man.byte: ocamlbuild_pack.cmo
203203
$(OCAMLC) ocamlbuild_pack.cmo -I src man/options_man.ml -o man/options_man.byte

man/ocamlbuild.1

Lines changed: 0 additions & 355 deletions
This file was deleted.

man/ocamlbuild.footer.1

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.SH SEE ALSO
2+
The
3+
.BR ocamlbuild
4+
manual,
5+
.BR ocaml (1),
6+
.BR make (1).
7+
.br
8+
.I The OCaml user's manual, chapter "Batch compilation".

0 commit comments

Comments
 (0)