| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 #======================================================================== | 341 #======================================================================== |
| 342 | 342 |
| 343 clean: | 343 clean: |
| 344 -test -z "$(BINARIES)" || rm -f $(BINARIES) | 344 -test -z "$(BINARIES)" || rm -f $(BINARIES) |
| 345 -rm -f *.$(OBJEXT) core *.core | 345 -rm -f *.$(OBJEXT) core *.core |
| 346 -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) | 346 -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) |
| 347 | 347 |
| 348 distclean: clean | 348 distclean: clean |
| 349 -rm -f *.tab.c | 349 -rm -f *.tab.c |
| 350 -rm -f $(CONFIG_CLEAN_FILES) | 350 -rm -f $(CONFIG_CLEAN_FILES) |
| 351 » -rm -f config.cache config.log config.status | 351 » -rm -f config.h config.cache config.log config.status |
| 352 | 352 |
| 353 #======================================================================== | 353 #======================================================================== |
| 354 # Install binary object libraries. On Windows this includes both .dll and | 354 # Install binary object libraries. On Windows this includes both .dll and |
| 355 # .lib files. Because the .lib files are not explicitly listed anywhere, | 355 # .lib files. Because the .lib files are not explicitly listed anywhere, |
| 356 # we need to deduce their existence from the .dll file of the same name. | 356 # we need to deduce their existence from the .dll file of the same name. |
| 357 # Library files go into the lib directory. | 357 # Library files go into the lib directory. |
| 358 # In addition, this will generate the pkgIndex.tcl | 358 # In addition, this will generate the pkgIndex.tcl |
| 359 # file in the install location (assuming it can find a usable tclsh shell) | 359 # file in the install location (assuming it can find a usable tclsh shell) |
| 360 # | 360 # |
| 361 # You should not have to modify this target. | 361 # You should not have to modify this target. |
| (...skipping 69 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 |