Skip to content

Commit

Permalink
Enable copying of lib in Makefile
Browse files Browse the repository at this point in the history
Enabled the copying of lib files during make install
  • Loading branch information
moogle19 committed Apr 22, 2016
1 parent a051630 commit f674686
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PREFIX?= /usr/local

MAN=
BINDIR=$(PREFIX)/sbin
#FILESDIR=$(PREFIX)/lib/iohyve
FILESDIR=$(PREFIX)/lib/iohyve
RCDIR=$(PREFIX)/etc/rc.d
MANDIR=$(PREFIX)/man/man8
MKDIR=mkdir
Expand All @@ -21,9 +21,9 @@ ${SCRIPTS}:
install:: all
$(MKDIR) -p $(BINDIR)
$(MKDIR) -p $(RCDIR)
# $(MKDIR) -p $(FILESDIR)
$(MKDIR) -p $(FILESDIR)
$(INSTALL) -c -m $(BINMODE) ${.OBJDIR}/$(SCRIPTS) $(BINDIR)/
# $(INSTALL) -c ${.OBJDIR}/lib/* $(FILESDIR)/
$(INSTALL) -c ${.OBJDIR}/lib/* $(FILESDIR)/
$(INSTALL) -c ${.OBJDIR}/rc.d/* $(RCDIR)/
$(INSTALL) -c $(MAN).gz $(MANDIR)/

Expand Down

0 comments on commit f674686

Please sign in to comment.