| OLD | NEW |
| 1 # Makefile.in -- | 1 # Makefile.in -- |
| 2 # | 2 # |
| 3 # This file is a Makefile for Sample TEA Extension. If it has the name | 3 # This file is a Makefile for Sample TEA Extension. If it has the name |
| 4 # "Makefile.in" then it is a template for a Makefile; to generate the | 4 # "Makefile.in" then it is a template for a Makefile; to generate the |
| 5 # actual Makefile, run "./configure", which is a configuration script | 5 # actual Makefile, run "./configure", which is a configuration script |
| 6 # generated by the "autoconf" program (constructs like "@foo@" will get | 6 # generated by the "autoconf" program (constructs like "@foo@" will get |
| 7 # replaced in the actual Makefile. | 7 # replaced in the actual Makefile. |
| 8 # | 8 # |
| 9 # Copyright (c) 1999 Scriptics Corporation. | 9 # Copyright (c) 1999 Scriptics Corporation. |
| 10 # Copyright (c) 2002-2005 ActiveState Corporation. | 10 # Copyright (c) 2002-2005 ActiveState Corporation. |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 done | 431 done |
| 432 list='$(bin_BINARIES)'; for p in $$list; do \ | 432 list='$(bin_BINARIES)'; for p in $$list; do \ |
| 433 rm -f $(DESTDIR)$(bindir)/$$p; \ | 433 rm -f $(DESTDIR)$(bindir)/$$p; \ |
| 434 done | 434 done |
| 435 | 435 |
| 436 .PHONY: all binaries clean depend distclean doc install libraries test | 436 .PHONY: all binaries clean depend distclean doc install libraries test |
| 437 | 437 |
| 438 # Tell versions [3.59,3.63) of GNU make to not export all variables. | 438 # Tell versions [3.59,3.63) of GNU make to not export all variables. |
| 439 # Otherwise a system limit (for SysV at least) may be exceeded. | 439 # Otherwise a system limit (for SysV at least) may be exceeded. |
| 440 .NOEXPORT: | 440 .NOEXPORT: |
| OLD | NEW |