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
This commit is contained in:
Eukara 2022-03-06 19:47:42 +00:00
parent 3e71c9863c
commit bc94d42767
2 changed files with 8 additions and 8 deletions

View File

@ -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)

View File

@ -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)