From: Kenn H. <ke...@us...> - 2001-03-04 23:41:20
|
Update of /cvsroot/linux-vax/kernel-2.4 In directory usw-pr-cvs1:/tmp/cvs-serv14928 Modified Files: Rules.make Log Message: Enable assembly listings for standard .S -> .o rule Index: Rules.make =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/Rules.make,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Rules.make 2001/01/26 00:27:00 1.2 +++ Rules.make 2001/03/04 23:42:52 1.3 @@ -74,7 +74,8 @@ $(CPP) $(AFLAGS) $(EXTRA_AFLAGS) $(AFLAGS_$@) $< > $@ %.o: %.S - $(CC) $(AFLAGS) $(EXTRA_AFLAGS) $(AFLAGS_$@) -c -o $@ $< + $(CC) $(AFLAGS) $(EXTRA_AFLAGS) $(AFLAGS_$@) -c -o $@ $< -Wa,-adnhls=$*.lst -g + endif |