From bc94d42767665a033822dbb94eaf036e7ec6c7bf Mon Sep 17 00:00:00 2001 From: Eukara Date: Sun, 6 Mar 2022 19:47:42 +0000 Subject: [PATCH] Merge patch from ticket #120 from illwieckz, renaming iqm to iqmtool in the Makefile. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6203 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- iqm/Makefile | 8 ++++---- iqm/Makefile.mingw | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) 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)