X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f Date: Tue, 8 Jan 2002 10:55:50 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: djgpp AT delorie DOT com Subject: Re: compile 24 C files AND 3 HEADERS In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 8 Jan 2002, A. Sinan Unur wrote: > 2. There are many ways of doing this. If you don't want to write a > makefile, and would like to avoid typing all the filenames, you can do > > dir *.o /b > file.lst > gcc @file.lst -o outname.exe Or even simpler: gcc *.o -o outname.exe