diff options
-rw-r--r-- | Make.rules | 3 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | src/Makefile | 2 |
3 files changed, 3 insertions, 4 deletions
@@ -241,8 +241,7 @@ endif compile: $(targets) @: -install:: $(targets) FORCE - @: +install: $(targets) FORCE clean: $(filter %/,$(targets)) ifeq ($(toplevelrun),yes) @@ -29,7 +29,7 @@ include Make.rules ## # Top-level targets -install:: +install: $(INSTALLDIR) $(DESTDIR)$(DOCDIR) $(INSTALL) README $(DESTDIR)$(DOCDIR) diff --git a/src/Makefile b/src/Makefile index 503a751..96e36b3 100644 --- a/src/Makefile +++ b/src/Makefile @@ -21,6 +21,6 @@ LIBS := -Wl,--as-needed \ $(shell pkg-config --libs $(PKGDEPS)) \ -Wl,--no-as-needed -install:: +install: $(INSTALLDIR) $(DESTDIR)$(SBINDIR) $(INSTALL) $(obj)/apk $(DESTDIR)$(SBINDIR) |