Thanks you guys, I appreciate the assistance.
Im currently running the virus scan, but have found nothing so far. The message
"press any key to continue" happens with a handful of programs, C or C++. These programs were once working, some without any modifications. While attempting to inspect the programs my system became drastically unstable, showing bug reports! Here, take a look:
Im looking for that
Make file, just want to post this. Thanks
EDIT: that was easy.. there's a bunch of files named with
Make so I chose the Win file. Wasn't sure how to actually attach it, so hope it's the correct one:
Quote:
# Project: File Editor Example
# Makefile created by Dev-C++ 4.9.2.9
CC = gcc.exe
WINDRES = windres.exe
RES = FileEditor.res
OBJ = Main.o $(RES)
LIBS = -L"C:\DEV-C++\lib"
INCS = -I"C:\DEV-C++\include"
BIN = FileEditor.exe
CFLAGS = $(INCS) -Wall -s -mwindows
.PHONY: clean
all: FileEditor.exe
clean:
rm -f $(OBJ) $(BIN)
FileEditor.exe: $(OBJ)
$(CC) $(OBJ) -o $(BIN) $(RES) $(LIBS) $(CFLAGS)
Main.o: Main.c
$(CC) -c Main.c -o Main.o $(CFLAGS)
FileEditor.res: FileEditor.rc Menu.rc
$(WINDRES) -i FileEditor.rc -I rc -o FileEditor.res -O coff
|