Hello,
when I try to compile my Qt project through the use of Qt Creator's Run button, I receive an 'No rule to make target' error from mingw32-make[1]. The target is a C++ header file that I did include in the project, so I don't know why I'm getting this error.

Also note that my Qt project is in a different partition than Qt, if that makes a difference. The reason I think it might is because I did a Google search, and found this thread.

Here is the complete compile output:

E:/Qt/2009.03/mingw/bin/mingw32-make -f Makefile.Debug
mingw32-make[1]: Entering directory `D:/Documents and Settings/Coolname007/My Documents/Programming_Projects/MAW/Modules/WebCoder_mod/modules/C_html_coder/C_html4_coder/module/C_html4_elements/modules/C_html4_tags/modules/C_html4_attributes'
mingw32-make[1]: Leaving directory `D:/Documents and Settings/Coolname007/My Documents/Programming_Projects/MAW/Modules/WebCoder_mod/modules/C_html_coder/C_html4_coder/module/C_html4_elements/modules/C_html4_tags/modules/C_html4_attributes'
mingw32-make[1]: *** No rule to make target `../../../C_html_element/modules/S_html_attr/S_html_attr.h', needed by `debug/C_html4_attributes.o'. Stop.
mingw32-make: Leaving directory `D:/Documents and Settings/Coolname007/My Documents/Programming_Projects/MAW/Modules/WebCoder_mod/modules/C_html_coder/C_html4_coder/module/C_html4_elements/modules/C_html4_tags/modules/C_html4_attributes'
mingw32-make: *** [debug] Error 2
Exited with code 2.
Error while building project C_html4_attributes
When executing build step 'Make'
Here is my Makefile.Debug:

################################################## ###########################
# Makefile for building: C_html4_attributes
# Generated by qmake (2.01a) (Qt 4.5.2) on: Thu Mar 3 09:55:14 2011
# Project: C_html4_attributes.pro
# Template: app
################################################## ###########################

####### Compiler, tools and options

CC = gcc
CXX = g++
DEFINES = -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN
CFLAGS = -g -Wall $(DEFINES)
CXXFLAGS = -g -frtti -fexceptions -mthreads -Wall $(DEFINES)
INCPATH = -I"e:\Qt\2009.03\qt\include\QtCore" -I"e:\Qt\2009.03\qt\include\QtGui" -I"e:\Qt\2009.03\qt\include" -I"e:\Qt\2009.03\qt\include\ActiveQt" -I"debug" -I"e:\Qt\2009.03\qt\mkspecs\win32-g++"
LINK = g++
LFLAGS = -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -mthreads -Wl -Wl,-subsystem,windows
LIBS = -L"e:\Qt\2009.03\qt\lib" -lmingw32 -lqtmaind -lQtGuid4 -lQtCored4
QMAKE = e:\Qt\2009.03\qt\bin\qmake.exe
IDC = e:\Qt\2009.03\qt\bin\idc.exe
IDL = midl
ZIP = zip -r -9
DEF_FILE =
RES_FILE =
COPY = copy /y
COPY_FILE = $(COPY)
COPY_DIR = xcopy /s /q /y /i
DEL_FILE = del
DEL_DIR = rmdir
MOVE = move
CHK_DIR_EXISTS= if not exist
MKDIR = mkdir
INSTALL_FILE = $(COPY_FILE)
INSTALL_PROGRAM = $(COPY_FILE)
INSTALL_DIR = $(COPY_DIR)

####### Output directory

OBJECTS_DIR = debug

####### Files

SOURCES = C_html4_attributes.cpp \
test.cpp
OBJECTS = debug/C_html4_attributes.o \
debug/test.o
DIST =
QMAKE_TARGET = C_html4_attributes
DESTDIR = debug\ #avoid trailing-slash linebreak
TARGET = C_html4_attributes.exe
DESTDIR_TARGET = debug\C_html4_attributes.exe

####### Implicit rules

.SUFFIXES: .cpp .cc .cxx .c

.cpp.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<

.cc.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<

.cxx.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<

.c.o:
$(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<

####### Build rules

first: all
all: Makefile.Debug $(DESTDIR_TARGET)

$(DESTDIR_TARGET): $(OBJECTS)
$(LINK) $(LFLAGS) -o $(DESTDIR_TARGET) $(OBJECTS) $(LIBS)


qmake: FORCE
@$(QMAKE) -spec e:\Qt\2009.03\qt\mkspecs\win32-g++ -win32 -o Makefile.Debug C_html4_attributes.pro

dist:
$(ZIP) C_html4_attributes.zip $(SOURCES) $(DIST) C_html4_attributes.pro e:\Qt\2009.03\qt\mkspecs\qconfig.pri e:\Qt\2009.03\qt\mkspecs\features\qt_functions.prf e:\Qt\2009.03\qt\mkspecs\features\qt_config.prf e:\Qt\2009.03\qt\mkspecs\features\exclusive_builds .prf e:\Qt\2009.03\qt\mkspecs\features\default_pre.prf e:\Qt\2009.03\qt\mkspecs\features\win32\default_pr e.prf e:\Qt\2009.03\qt\mkspecs\features\debug.prf e:\Qt\2009.03\qt\mkspecs\features\debug_and_releas e.prf e:\Qt\2009.03\qt\mkspecs\features\default_post.prf e:\Qt\2009.03\qt\mkspecs\features\win32\default_po st.prf e:\Qt\2009.03\qt\mkspecs\features\build_pass.prf e:\Qt\2009.03\qt\mkspecs\features\win32\rtti.prf e:\Qt\2009.03\qt\mkspecs\features\win32\exceptions .prf e:\Qt\2009.03\qt\mkspecs\features\win32\stl.prf e:\Qt\2009.03\qt\mkspecs\features\shared.prf e:\Qt\2009.03\qt\mkspecs\features\warn_on.prf e:\Qt\2009.03\qt\mkspecs\features\qt.prf e:\Qt\2009.03\qt\mkspecs\features\win32\thread.prf e:\Qt\2009.03\qt\mkspecs\features\moc.prf e:\Qt\2009.03\qt\mkspecs\features\win32\windows.pr f e:\Qt\2009.03\qt\mkspecs\features\resources.prf e:\Qt\2009.03\qt\mkspecs\features\uic.prf e:\Qt\2009.03\qt\mkspecs\features\yacc.prf e:\Qt\2009.03\qt\mkspecs\features\lex.prf e:\Qt\2009.03\qt\mkspecs\features\include_source_d ir.prf e:\Qt\2009.03\qt\lib\qtmaind.prl HEADERS RESOURCES IMAGES SOURCES OBJECTIVE_SOURCES FORMS YACCSOURCES YACCSOURCES LEXSOURCES

clean: compiler_clean
-$(DEL_FILE) debug\C_html4_attributes.o debug\test.o

distclean: clean
-$(DEL_FILE) $(DESTDIR_TARGET)
-$(DEL_FILE) Makefile.Debug

mocclean: compiler_moc_header_clean compiler_moc_source_clean

mocables: compiler_moc_header_make_all compiler_moc_source_make_all

compiler_moc_header_make_all:
compiler_moc_header_clean:
compiler_rcc_make_all:
compiler_rcc_clean:
compiler_image_collection_make_all: qmake_image_collection.cpp
compiler_image_collection_clean:
-$(DEL_FILE) qmake_image_collection.cpp
compiler_moc_source_make_all:
compiler_moc_source_clean:
compiler_uic_make_all:
compiler_uic_clean:
compiler_yacc_decl_make_all:
compiler_yacc_decl_clean:
compiler_yacc_impl_make_all:
compiler_yacc_impl_clean:
compiler_lex_make_all:
compiler_lex_clean:
compiler_clean:



####### Compile

debug/C_html4_attributes.o: C_html4_attributes.cpp C_html4_attributes.h \
C_ENUM_attr_to_strings.h \
../../../C_html_element/modules/S_html_attr/S_html_attr.h \
../../../S_class_functions_info/S_class_functions_info.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\C_html4_attributes.o C_html4_attributes.cpp

debug/test.o: test.cpp C_html4_attributes.h \
C_ENUM_attr_to_strings.h \
../../../C_html_element/modules/S_html_attr/S_html_attr.h \
../../../S_class_functions_info/S_class_functions_info.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\test.o test.cpp

####### Install

install: FORCE

uninstall: FORCE

FORCE:
If you need any more info, just ask...

Thanks in advance to anyone who tries to help.