Differences From Artifact [9e9c539c66]:
- Executable file build-common.sh — part of check-in [5d8baf9914] at 2014-10-24 20:13:54 on branch trunk — Completed rename (user: rkeene, size: 276) [annotate] [blame] [check-ins using]
To Artifact [82f16cfdad]:
- Executable file build-common.sh — part of check-in [def9a63955] at 2014-10-24 20:28:17 on branch trunk — Updated to have working Makefile (user: rkeene, size: 317) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | + + + + + - - | #! /bin/bash set -e tuapi_version="$(grep Tcl_PkgProvide tuapi.c | awk '{ print $3 }' | sed 's@[");]*@@g')" case "$1" in clean|distclean) rm -rf out inst rm -f libtuapi.a tuapi.o tuapi.so rm -f tuapi.tcl.h exit 0 ;; version) echo "${tuapi_version}" ;; esac |