X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f Date: Sun, 13 Feb 2005 09:57:25 -0500 Message-Id: <200502131457.j1DEvPSS022036@envy.delorie.com> From: DJ Delorie To: fdonahoe AT wilkes DOT edu CC: djgpp AT delorie DOT com In-reply-to: <1108295498.420f3f4ad4276@webmail.wilkes.edu> (fdonahoe AT wilkes DOT edu) Subject: Re: src/rmake.bat LOST References: <1108295498 DOT 420f3f4ad4276 AT webmail DOT wilkes DOT edu> 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 The only thing in cvs is src/rmake.cc /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ #include #include #include #include #include #include int main(int argc, char **argv) { int i; char cwd[200]; char path[200], *pathp; char file[200]; FILE *oi = fopen("makefile.oi", "w"); FILE *rf = fopen("makefile.rf2", "w"); getcwd(cwd, 200); argv[0] = "make"; glob_t makefile_list; glob(".../makefile", 0, 0, &makefile_list); for (i = 0; i