Changeset 4858 for branches/r9


Ignore:
Timestamp:
Dec 12, 2014, 8:16:06 AM (10 years ago)
Author:
gah
Message:
 
Location:
branches/r9/runner
Files:
1 added
1 edited
7 moved

Legend:

Unmodified
Added
Removed
  • branches/r9/runner/Makefile.in

    r4855 r4858  
    3636RM              = rm -f
    3737
    38 # The script directory is moved from src/tcl.
     38XMLFILES        = \
     39                $(srcdir)/library.xml
    3940
    4041.PHONY: src scripts tests
     
    4647links:
    4748
    48 install:
    49         $(MKDIR_P) -m 0755 $(destdir)
    50         $(INSTALL) -m 0444 pkgIndex.tcl $(destdir)
    51         $(MAKE) -C src install
    52         $(MAKE) -C scripts install
     49install-xmlfiles:
     50        $(MKDIR_P) -m 0755 $(destdir)/lib
     51        for i in $(XMLFILES) ; do \
     52          $(INSTALL) -m 0444  $$i $(destdir)/lib ; \
     53        done
     54
     55make-links:
    5356        $(RM) $(bindir)/tclsh
    5457        (cd $(bindir); $(LN_S) tclsh$(TCL_VERSION) tclsh)
     
    5659        (cd $(bindir); $(LN_S) wish$(TK_VERSION) wish)
    5760
     61install: make-links install-xmlfiles
     62        $(MKDIR_P) -m 0755 $(destdir)
     63        $(INSTALL) -m 0444 pkgIndex.tcl $(destdir)
     64        $(MAKE) -C scripts install
     65
    5866test:
    5967        $(MAKE) -C tests all
    6068
    6169clean:
    62         $(MAKE) -C src clean
    6370        $(MAKE) -C tests clean
    6471        $(MAKE) -C scripts clean
    6572
    6673distclean: clean
    67         $(MAKE) -C src distclean
    6874        $(MAKE) -C tests distclean
    6975        $(MAKE) -C scripts distclean
Note: See TracChangeset for help on using the changeset viewer.