#!/usr/bin/make -f include ../source.mk V = $${OPK_SOURCE\#tcl} nop: @: configure: TCL_PACKAGE_PATH='$${TCL_LIBRARY}' \ TCL_SHLIB_LD_EXTRAS='-Wl,-soname,$${TCL_LIB_FILE}' \ oh-autoconfigure -s src/unix -B src/unix -- \ --enable-shared \ --enable-threads \ --enable-dll-unloading \ --disable-rpath \ --enable-man-symlinks touch $@ build: configure oh-autobuild -s src/unix -B src/unix -- \ TCL_LIBRARY='/usr/share/$(OPK_SOURCE)' touch $@ install: build oh-autoinstall -s src/unix -B src/unix -- \ TCL_LIBRARY='/usr/share/$(OPK_SOURCE)' \ MANN_INSTALL_DIR='$$(MAN_INSTALL_DIR)/man3' for dir in generic unix compat libtommath; do \ mkdir -p dest/usr/include/$(OPK_SOURCE)/tcl-private/$${dir}; \ cp src/$${dir}/*.h \ dest/usr/include/$(OPK_SOURCE)/tcl-private/$${dir}; \ done mv dest/usr/share/man/man1/tclsh.1 dest/usr/share/man/man1/tclsh.$(V).1 # TODO: Rename ".3" and ".n" manual pages to have a ".3tcl" extension. # This requires some thought about handling links. # Also change the .TH macros and cross references in the manual pages. oh-fixperms oh-strip oh-installfiles