Overview
Comment: | Updated to not use KitDLL (not needed) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c00111a8d5215d3276ffbc7422ad87fd |
User & Date: | rkeene on 2014-09-08 02:55:32 |
Other Links: | manifest | tags |
Context
2014-09-08
| ||
02:55 | Removed warnings check-in: eed618f01c user: rkeene tags: trunk | |
02:55 | Updated to not use KitDLL (not needed) check-in: c00111a8d5 user: rkeene tags: trunk | |
02:50 | Updated with support for not redownloading manifest if it's already present check-in: d64cb6e110 user: rkeene tags: trunk | |
Changes
Modified Makefile from [e4bc3f72c7] to [71d33fb8c0].
3 3 CFLAGS = -Wall -g3 $(shell $(PKG_CONFIG) --cflags fuse) $(TCL_CFLAGS) 4 4 LDFLAGS = $(TCL_LDFLAGS) 5 5 LIBS = $(shell $(PKG_CONFIG) --libs fuse) $(TCL_LIBS) 6 6 PREFIX = /usr/local 7 7 prefix = $(PREFIX) 8 8 bindir = $(prefix)/bin 9 9 10 -TCLKIT_SDK_DIR = $(shell pwd)/build/libtclkit-sdk-cvs_HEAD 11 10 ifneq ($(TCLKIT_SDK_DIR),) 12 11 TCLCONFIG_SH_PATH = $(TCLKIT_SDK_DIR)/lib/tclConfig.sh 13 12 TCL_LDFLAGS = -Wl,-R,$(TCLKIT_SDK_DIR)/lib 14 13 export TCLKIT_SDK_DIR 15 14 else 16 15 TCLCONFIG_SH_PATH = $(shell echo 'puts [::tcl::pkgconfig get libdir,install]' | tclsh)/tclConfig.sh 17 16 endif