> I'm dealing with some lex/yacc/flex/bison > I can run the YACC and get .o output. I'm expecting the .tab.c. > Since I'm not doing it must be one of the built in rules. > How do I stop it?
Check: - the make command line parameters - the builtin rules (-p option) and clear the ones you don't want - the directives (.SUFFIXES, etc) and clean everything you don't want - the manual ;-) I also clear all the built-in rules to prevent any unexpected results. -- Joost Leeuwesteijn _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
