Fixed makefile

Signed-off-by: Maciej Kurc <mkurc@antmicro.com>
diff --git a/ql-iob-plugin/Makefile b/ql-iob-plugin/Makefile
index e7a16b4..446dfc7 100644
--- a/ql-iob-plugin/Makefile
+++ b/ql-iob-plugin/Makefile
@@ -10,11 +10,11 @@
 $(NAME).so: $(OBJS)
 	$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared -o $@ $^ $(LDLIBS)
 
-.PHONY: install
+.PHONY: install test
 
 install: test
 	mkdir -p $(PLUGINS_DIR)
-	cp $< $(PLUGINS_DIR)/$<
+	cp $(NAME).so $(PLUGINS_DIR)/$(NAME).so
 
 test: $(NAME).so
 	$(MAKE) -C tests all