diff options
| author | Gaëtan Gilbert | 2018-07-04 01:01:15 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2018-07-04 01:01:15 +0200 |
| commit | cd45eda96c0026fc8962ba51b3e3750be946b96f (patch) | |
| tree | 4291c5901c58fd9e1a014e1469b7ba40f574fc0c | |
| parent | 218c6cebf770a15fb3ca6eca1d587f42b8994234 (diff) | |
Make bin/ in makefile, not configure.
| -rw-r--r-- | Makefile | 5 | ||||
| -rw-r--r-- | configure.ml | 6 |
2 files changed, 4 insertions, 7 deletions
@@ -156,7 +156,10 @@ endif MAKE_OPTS := --warn-undefined-variable --no-builtin-rules -submake: alienclean +bin: + mkdir bin + +submake: alienclean | bin $(MAKE) $(MAKE_OPTS) -f Makefile.build $(MAKECMDGOALS) noconfig: diff --git a/configure.ml b/configure.ml index c13c5e1072..b264a26525 100644 --- a/configure.ml +++ b/configure.ml @@ -235,12 +235,6 @@ let get_date () = let short_date, full_date = get_date () - -(** Create the bin/ directory if non-existent *) - -let _ = if not (dir_exists "bin") then Unix.mkdir "bin" 0o755 - - (** * Command-line parsing *) type ide = Opt | Byte | No |
