2 # AROS mmakefile.src generator version 0.01a
3 # Jack Patton 2/24/2004
4 # Script to generate a mmakefile.src based upon the .c files in the current directory.
5 # Please don't flame me for my lack of knowledge of mmake (too badly anyway ;) )!
9 print "Usage: genmfs <project name>\n";
12 open(OUT
,">mmakefile.src");
13 print OUT
"# \$Id\$\n#\n# Makefile to make $tg.\n\n";
14 print OUT
"include \$(TOP)/config/make.cfg\n\n";
15 print OUT
"EXEDIR := \$(AROSDIR)\n\n";
16 print OUT
"FILES := ";
18 next if $ln =~ m/mmakefile/;
23 print OUT
"\\\n\t$ln ";
26 print OUT
"\n\n#MM $tg : includes linklibs\n\n";
27 print OUT
"%build_prog mmake=$tg \\\n";
28 print OUT
" progname=$tg targetdir=\$(EXEDIR) \\\n";
29 print OUT
" files=\$(FILES) uselibs=\"arossupport amiga arosc m\"\n\n";
30 print OUT
"%common\n";