make the 'all' target a dependency of 'install'

This commit is contained in:
Dave Reisner 2012-07-15 10:07:26 -04:00
parent 1d9c98c5ee
commit f83a267672

View File

@ -19,7 +19,7 @@ all: $(BINPROGS)
clean:
$(RM) $(BINPROGS)
install:
install: all
install -dm755 $(DESTDIR)$(PREFIX)/bin
install -m755 ${BINPROGS} $(DESTDIR)$(PREFIX)/bin