When compiling, information about TEXT.txt pops up, about not being able to find some file or directory and input file (as I understand, a compiled file does not and cannot start accordingly):
The question is: what is the Test.txt file, what files can not find the CodeLite at startup and how to fix it?
makefile:
.PHONY: clean All All: @echo "----------Building project:[ Test - Debug ]----------" @cd "Test" && "$(MAKE)" -f "Test.mk" clean: @echo "----------Cleaning project:[ Test - Debug ]----------" @cd "Test" && "$(MAKE)" -f "Test.mk" clean test.mk:
## ## Auto Generated makefile by CodeLite IDE ## any manual changes will be erased ## ## Debug ProjectName :=Test ConfigurationName :=Debug WorkspacePath :=C:/Users/Егорий/Documents/Krak ProjectPath :=C:/Users/Егорий/Documents/Krak/Test IntermediateDirectory :=./Debug OutDir := $(IntermediateDirectory) CurrentFileName := CurrentFilePath := CurrentFileFullPath := User :=Хускар Date :=20/09/2016 CodeLitePath :="E:/Program Files/CodeLite" LinkerName :=gcc SharedObjectLinkerName :=gcc -shared -fPIC ObjectSuffix :=.o DependSuffix :=.od PreprocessSuffix :=.oi DebugSwitch :=-g IncludeSwitch :=-I LibrarySwitch :=-l OutputSwitch :=-o LibraryPathSwitch :=-L PreprocessorSwitch :=-D SourceSwitch :=-c OutputFile :=$(IntermediateDirectory)/$(ProjectName) Preprocessors := ObjectSwitch :=-o ArchiveOutputSwitch := PreprocessOnlySwitch :=-E ObjectsFileList :="Test.txt" PCHCompileFlags := MakeDirCommand :=makedir RcCmpOptions := RcCompilerName :=windres LinkOptions := IncludePath := $(IncludeSwitch). $(IncludeSwitch). IncludePCH := RcIncludePath := Libs := ArLibs := LibPath := $(LibraryPathSwitch). ## ## Common variables ## AR, CXX, CC, AS, CXXFLAGS and CFLAGS can be overriden using an environment variables ## AR := ar rcus CXX := gcc CC := gcc CXXFLAGS := -g -O0 -Wall $(Preprocessors) CFLAGS := -g -O0 -Wall $(Preprocessors) ASFLAGS := AS := as ## ## User defined environment variables ## CodeLiteDir:=E:\Program Files\CodeLite Objects0=$(IntermediateDirectory)/main.c$(ObjectSuffix) Objects=$(Objects0) ## ## Main Build Targets ## .PHONY: all clean PreBuild PrePreBuild PostBuild MakeIntermediateDirs all: $(OutputFile) $(OutputFile): $(IntermediateDirectory)/.d $(Objects) @$(MakeDirCommand) $(@D) @echo "" > $(IntermediateDirectory)/.d @echo $(Objects0) > $(ObjectsFileList) $(LinkerName) $(OutputSwitch)$(OutputFile) @$(ObjectsFileList) $(LibPath) $(Libs) $(LinkOptions) MakeIntermediateDirs: @$(MakeDirCommand) "./Debug" $(IntermediateDirectory)/.d: @$(MakeDirCommand) "./Debug" PreBuild: ## ## Objects ## $(IntermediateDirectory)/main.c$(ObjectSuffix): main.c $(IntermediateDirectory)/main.c$(DependSuffix) $(CC) $(SourceSwitch) "C:/Users/Егорий/Documents/Krak/Test/main.c" $(CFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/main.c$(ObjectSuffix) $(IncludePath) $(IntermediateDirectory)/main.c$(DependSuffix): main.c @$(CC) $(CFLAGS) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/main.c$(ObjectSuffix) -MF$(IntermediateDirectory)/main.c$(DependSuffix) -MM main.c $(IntermediateDirectory)/main.c$(PreprocessSuffix): main.c $(CC) $(CFLAGS) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/main.c$(PreprocessSuffix)main.c -include $(IntermediateDirectory)/*$(DependSuffix) ## ## Clean ## clean: $(RM) -r ./Debug/ 
Test.mk- zed