Skip to content

Commit

Permalink
makefile: Remove all dependency from make install target
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Graf <thomas@cilium.io>
  • Loading branch information
tgraf committed Mar 22, 2017
1 parent 30e12ca commit 1c148c9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ clean:
-$(MAKE) -C ./contrib/packaging/rpm clean
-$(MAKE) -C ./contrib/packaging/docker clean

install: all
install:
$(INSTALL) -m 0755 -d $(DESTDIR)$(BINDIR)
for i in $(SUBDIRS); do $(MAKE) -C $$i install; done
for i in $(SUBDIRSLIB); do $(MAKE) -C $$i install; done
Expand Down
2 changes: 1 addition & 1 deletion cilium/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ clean:
rm -f $(TARGET)
go clean

install: all
install:
$(INSTALL) -m 0755 -d $(DESTDIR)$(BINDIR)
$(INSTALL) -m 0755 $(TARGET) $(DESTDIR)$(BINDIR)
$(INSTALL) -m 0755 -d $(DESTDIR)$(CONFDIR)/bash_completion.d
Expand Down
2 changes: 1 addition & 1 deletion daemon/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ clean:
rm -f $(TARGET)
go clean

install: all
install:
groupadd -f cilium
$(INSTALL) -m 0755 -d $(DESTDIR)$(BINDIR)
$(INSTALL) -m 0755 $(TARGET) $(DESTDIR)$(BINDIR)
Expand Down
2 changes: 1 addition & 1 deletion plugins/cilium-docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ clean:
go clean
rm -f $(TARGET)

install: all
install:
$(INSTALL) -m 0755 $(TARGET) $(DESTDIR)$(BINDIR)

0 comments on commit 1c148c9

Please sign in to comment.