View Single Post
Old Jun 4th, 2005, 9:56 PM   #9
Insomniac
Programmer
 
Insomniac's Avatar
 
Join Date: Aug 2004
Location: Cloud #9
Posts: 47
Rep Power: 0 Insomniac is on a distinguished road
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
__________________
From an IBM Thinkpad T43 - 14.1" SXGA+ - ATI 64 MB X300 - Sonoma 760 - 2 GB RAM - 80 GB HD 5400 - IBM ABG II - FC3, Ubuntu & XPee
DevC++, and Macromedia's - Dreamweaver & Flash Pro and a little Adobe Illustrator & Photoshop
Sleep? Sleep is for the weak.:cool:


Last edited by Insomniac; Jun 4th, 2005 at 10:05 PM.
Insomniac is offline   Reply With Quote