Re[3]: [Dev-C++] In desperate need of help
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
From: Zodiaq <zo...@ac...> - 2002-11-24 20:22:35
|
Hello Oroszi and all Dev-C++ users, Sunday, November 24, 2002, 8:52:39 PM, Oroszi wrote as follows: OB> gcc -c -o temp1.o temp1.c OB> gcc -c -o temp2.o temp2.c OB> gcc -c -o temp3.o temp3.c Try these: gcc -c *.cpp -s OB> Some resources (if you have): OB> windres -i tempres.rc -o tempres.o Of course resources have to be compiled separately... OB> Then link together: OB> gcc temp1.o temp2.o temp3.o tempres.o -o temp.exe -mwindows gcc *.o temp.exe -mwindows -- regards, Zodiaq |