diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -19,7 +19,8 @@ clean: @$(MAKE) $(MFLAGS) -C tests clean install: $(TARGET) $(DOCDIR)/$(MAN1) - install -D -m 755 $(SRCDIR)/$(TARGET) $(DESTDIR)$(BINDIR)/$(TARGET) + install -d $(DESTDIR)$(BINDIR) + install -m 755 $(SRCDIR)/$(TARGET) $(DESTDIR)$(BINDIR)/$(TARGET) install -d $(DESTDIR)$(EXAMPLEDIR) cp -r examples/* $(DESTDIR)$(EXAMPLEDIR) install -d $(DESTDIR)$(MANDIR)/man1 |