diff --git a/iqm/Makefile b/iqm/Makefile index e699aaa0..3f2f9e9b 100644 --- a/iqm/Makefile +++ b/iqm/Makefile @@ -11,13 +11,13 @@ UPGRADE_OBJS= \ default: all -all: iqm #upgrade +all: iqmtool #upgrade clean: - -$(RM) $(IQM_OBJS) $(UPGRADE_OBJS) iqm upgrade + -$(RM) $(IQM_OBJS) $(UPGRADE_OBJS) iqmtool upgrade -iqm: $(IQM_OBJS) - $(CXX) $(CXXFLAGS) -o iqm $(IQM_OBJS) +iqmtool: $(IQM_OBJS) + $(CXX) $(CXXFLAGS) -o iqmtool $(IQM_OBJS) upgrade: $(UPGRADE_OBJS) $(CXX) $(CXXFLAGS) -o upgrade $(UPGRADE_OBJS) diff --git a/iqm/Makefile.mingw b/iqm/Makefile.mingw index e6690e01..3f43069c 100644 --- a/iqm/Makefile.mingw +++ b/iqm/Makefile.mingw @@ -14,13 +14,13 @@ UPGRADE_OBJS= \ default: all -all: iqm.exe #upgrade.exe +all: iqmtool.exe #upgrade.exe clean: - -$(RM) $(IQM_OBJS) $(UPGRADE_OBJS) iqm.exe upgrade.exe + -$(RM) $(IQM_OBJS) $(UPGRADE_OBJS) iqmtool.exe upgrade.exe -iqm.exe: $(IQM_OBJS) - $(CXX) $(CXXFLAGS) -o iqm.exe $(IQM_OBJS) $(LIBS) +iqmtool.exe: $(IQM_OBJS) + $(CXX) $(CXXFLAGS) -o iqmtool.exe $(IQM_OBJS) $(LIBS) upgrade.exe: $(UPGRADE_OBJS) $(CXX) $(CXXFLAGS) -o upgrade.exe $(UPGRADE_OBJS) $(LIBS)