diff options
| author | Simon Tatham <anakin@pobox.com> | 2015-04-26 08:57:51 +0100 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2015-04-26 08:57:51 +0100 |
| commit | 6f1c6378cf01dd5d91c5dbcba987555bfbd029d5 (patch) | |
| tree | 911dfa3241face8c079cea44ebb4e128cffec277 /Makefile | |
| parent | 4f6f2db7fb076e7e031fe240d9fbc8423ba69d6f (diff) | |
| download | halibut-6f1c6378cf01dd5d91c5dbcba987555bfbd029d5.zip halibut-6f1c6378cf01dd5d91c5dbcba987555bfbd029d5.tar.gz halibut-6f1c6378cf01dd5d91c5dbcba987555bfbd029d5.tar.bz2 halibut-6f1c6378cf01dd5d91c5dbcba987555bfbd029d5.tar.xz | |
Makefile: create subdirs of the install directory too.
Now you can 'make install prefix=/some/previously/nonexistent/path'
and have all the necessary subdirs created for you.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -116,7 +116,7 @@ clean:: rm -f *.o halibut core install: - mkdir -p $(prefix) + mkdir -p $(prefix) $(bindir) $(INSTALL) -m 755 halibut $(bindir)/halibut $(MAKE) -C ../doc install prefix="$(prefix)" INSTALL="$(INSTALL)" |