| OLD | NEW |
| 1 VPATH = @srcdir@ | 1 VPATH = @srcdir@ |
| 2 srcdir = @srcdir@ | 2 srcdir = @srcdir@ |
| 3 | 3 |
| 4 EXECUTABLES = break-reverse consecutive-reverse finish-reverse \ | 4 EXECUTABLES = enable function_call_history instruction_history |
| 5 » i386-precsave i386-reverse i386-sse-reverse \ | |
| 6 » machinestate solib-reverse step-reverse until-reverse \ | |
| 7 » watch-reverse sigall-reverse sigall-precsave | |
| 8 | 5 |
| 9 MISCELLANEOUS = | 6 MISCELLANEOUS = |
| 10 | 7 |
| 11 all info install-info dvi install uninstall installcheck check: | 8 all info install-info dvi install uninstall installcheck check: |
| 12 @echo "Nothing to be done for $@..." | 9 @echo "Nothing to be done for $@..." |
| 13 | 10 |
| 14 clean mostlyclean: | 11 clean mostlyclean: |
| 15 rm -f *~ *.o *.x *.ci *.sl a.out core | 12 rm -f *~ *.o *.x *.ci *.sl a.out core |
| 16 rm -f *.dwo *.dwp | 13 rm -f *.dwo *.dwp |
| 17 rm -f $(EXECUTABLES) $(MISCELLANEOUS) | 14 rm -f $(EXECUTABLES) $(MISCELLANEOUS) |
| 18 | 15 |
| 19 distclean maintainer-clean realclean: clean | 16 distclean maintainer-clean realclean: clean |
| 20 rm -f Makefile config.status config.log site.* gdb.log gdb.sum | 17 rm -f Makefile config.status config.log site.* gdb.log gdb.sum |
| 21 | |
| OLD | NEW |