Overview
Comment: | Updated to create additional install directories |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ae8cc5e6e337d6ff96476c0f0b860635 |
User & Date: | rkeene on 2014-05-02 03:10:58 |
Other Links: | manifest | tags |
Context
2014-05-02
| ||
03:32 | Updated to fail to open files and set path to library check-in: 7256978106 user: rkeene tags: trunk | |
03:10 | Updated to create additional install directories check-in: ae8cc5e6e3 user: rkeene tags: trunk | |
02:58 | Fixed built shared object name check-in: 41795794eb user: rkeene tags: trunk | |
Changes
Modified Makefile.in from [ec9fd55538] to [5485185094].
︙ | ︙ | |||
42 43 44 45 46 47 48 49 50 | cp tcc/libtcc.a tcltcc-static.new.a $(AR) rcu tcltcc-static.new.a tcltcc.o -$(RANLIB) tcltcc-static.new.a mv tcltcc-static.new.a tcltcc-static.a install: $(TARGETS) pkgIndex.tcl tcc/libtcc1.a $(INSTALL) -d "$(DESTDIR)$(PACKAGE_INSTALL_DIR)" $(INSTALL) -m 0755 $(TARGETS) "$(DESTDIR)$(PACKAGE_INSTALL_DIR)" $(INSTALL) -m 0644 pkgIndex.tcl "$(DESTDIR)$(PACKAGE_INSTALL_DIR)" | > > | | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | cp tcc/libtcc.a tcltcc-static.new.a $(AR) rcu tcltcc-static.new.a tcltcc.o -$(RANLIB) tcltcc-static.new.a mv tcltcc-static.new.a tcltcc-static.a install: $(TARGETS) pkgIndex.tcl tcc/libtcc1.a $(INSTALL) -d "$(DESTDIR)$(PACKAGE_INSTALL_DIR)" $(INSTALL) -d "$(DESTDIR)$(PACKAGE_INSTALL_DIR)/lib" $(INSTALL) -d "$(DESTDIR)$(PACKAGE_INSTALL_DIR)/include" $(INSTALL) -m 0755 $(TARGETS) "$(DESTDIR)$(PACKAGE_INSTALL_DIR)" $(INSTALL) -m 0644 pkgIndex.tcl "$(DESTDIR)$(PACKAGE_INSTALL_DIR)" $(INSTALL) -m 0644 tcc/libtcc1.a "$(DESTDIR)$(PACKAGE_INSTALL_DIR)/lib" clean: rm -f tcltcc.o rm -f tcltcc.@SHOBJEXT@ tcltcc-static.a rm -f tcltcc.@SHOBJEXT@.a tcltcc.@SHOBJEXT@.def -$(MAKE) -C tcc clean |
︙ | ︙ |