Date: Mon, 8 Aug 94 22:04:56 -0400 From: dj AT ctron DOT com (DJ Delorie) To: flaregun AT strauss DOT udel DOT edu Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: long command lines > I've forgotten how to use a response file with djgpp (v1.10). I > need to compiles lots of objs with a command line like: > > gcc obj1 obj2 ... objn > > How do I tell gcc to read a file for the args? If you're using GNU make, it's automatic. If not, use this syntax: gcc @filename This works for all go32 programs, as go32 does this for you.