diff options
author | ericm <ericm> | 2000-02-14 22:40:56 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-02-14 22:40:56 (GMT) |
commit | e411cd157324b6c27b10548c0b50704a7cbf4b37 (patch) | |
tree | 81d84e41bc97eb4e2c73afbb6d6179f0ed9d426c /unix/Makefile.in | |
parent | 7a903ce32d04f0ad3f058010246c045baf889802 (diff) | |
download | tcl-e411cd157324b6c27b10548c0b50704a7cbf4b37.zip tcl-e411cd157324b6c27b10548c0b50704a7cbf4b37.tar.gz tcl-e411cd157324b6c27b10548c0b50704a7cbf4b37.tar.bz2 |
* unix/Makefile.in: Added rpm target to generate Tcl binary RPM.
* unix/tcl.spec: RPM specification file for a Tcl binary RPM for Linux.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 1674db2..a30bafb 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.58 2000/02/10 08:55:25 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.59 2000/02/14 22:40:56 ericm Exp $ VERSION = @TCL_VERSION@ @@ -460,7 +460,7 @@ topDirName: gendate: yacc -l $(GENERIC_DIR)/tclGetDate.y sed -e 's/yy/TclDate/g' -e '/^#include <values.h>/d' \ - -e 's?SCCSID?RCS: @(#) $$Id: Makefile.in,v 1.58 2000/02/10 08:55:25 hobbs Exp $$?' \ + -e 's?SCCSID?RCS: @(#) $$Id: Makefile.in,v 1.59 2000/02/14 22:40:56 ericm Exp $$?' \ -e '/#ifdef __STDC__/,/#endif/d' -e '/TclDateerrlab:/d' \ -e '/TclDatenewstate:/d' -e '/#pragma/d' \ -e '/#include <inttypes.h>/d' -e 's/const /CONST /g' \ @@ -1035,6 +1035,21 @@ checkexports: $(TCL_LIB_FILE) -nm -p $(TCL_LIB_FILE) | awk '$$2 ~ /[TDB]/ { print $$3 }' | sort -n | grep -v '^[Tt]cl' # +# Target to create a Tcl RPM for Linux. Requires that you be on a Linux +# system. +# + +rpm: all /bin/rpm + rm -f THIS.TCL.SPEC + echo "%define _builddir `pwd`" > THIS.TCL.SPEC + echo "%define _rpmdir `pwd`/RPMS" >> THIS.TCL.SPEC + cat tcl.spec >> THIS.TCL.SPEC + mkdir -p RPMS/i386 + rpm -bb THIS.TCL.SPEC + mv RPMS/i386/*.rpm . + rm -rf RPMS THIS.TCL.SPEC + +# # Target to create a proper Tcl distribution from information in the # master source directory. DISTDIR must be defined to indicate where # to put the distribution. |