1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
########################################################################
#
# Platform for distribution
SYSTEM= @SYSTEM@
MACHINE= @MACHINE@
PLATFORM= $(SYSTEM)_$(MACHINE)
#
# Name of the binary arrchive
BINDIST= Ted_$(PLATFORM)
#
#
CHOWN_CMD= test x_$$RPM_BUILD_ROOT != x_ || chown root:root
#
########################################################################
package: TedBindist.tar ../Ted/Ted.static
:
@test x_$$RPM_BUILD_ROOT != x_ || \
echo ========== NEEDS TO BE RUN AS ROOT ==========
:
rm -rf scratch
:
mkdir scratch
mkdir scratch/bin
:
$(CHOWN_CMD) scratch
$(CHOWN_CMD) scratch/bin
:
chmod 755 scratch
chmod 755 scratch/bin
:
( cd scratch && umask 0 && tar xvf ../TedBindist.tar )
cp scratch/info/TedDocument.rtf readme.rtf
cp rdm.txt readme.txt
:
cp ../Ted/Ted.static scratch/bin/Ted
$(CHOWN_CMD) scratch/bin/Ted
chmod 755 scratch/bin/Ted
:
( cd scratch && tar cvf - * | gzip -9 > ../$(BINDIST).tar.gz )
:
$(CHOWN_CMD) README
$(CHOWN_CMD) readme.rtf
$(CHOWN_CMD) readme.txt
$(CHOWN_CMD) $(BINDIST).tar.gz
$(CHOWN_CMD) $(BINDIST).lsm
$(CHOWN_CMD) installTed.sh
:
test x_$$RPM_BUILD_ROOT != x_ || chmod 644 README
test x_$$RPM_BUILD_ROOT != x_ || chmod 644 readme.rtf
test x_$$RPM_BUILD_ROOT != x_ || chmod 644 readme.txt
test x_$$RPM_BUILD_ROOT != x_ || chmod 644 $(BINDIST).tar.gz
test x_$$RPM_BUILD_ROOT != x_ || chmod 644 $(BINDIST).lsm
test x_$$RPM_BUILD_ROOT != x_ || chmod 755 installTed.sh
:
@echo Checking existence of distribution files
test -s README
test -s readme.rtf
test -s readme.txt
test -s $(BINDIST).tar.gz
test -s $(BINDIST).lsm
test -x installTed.sh
:
@date > package
@echo Distribution is complete
########################################################################
#
# Package containing a dynamically linked executable
#
########################################################################
package.shared: TedBindist.tar ../Ted/Ted
:
@test x_$$RPM_BUILD_ROOT != x_ || \
echo ========== NEEDS TO BE RUN AS ROOT ==========
:
rm -rf scratch
:
mkdir scratch
mkdir scratch/bin
:
$(CHOWN_CMD) scratch
$(CHOWN_CMD) scratch/bin
:
chmod 755 scratch
chmod 755 scratch/bin
:
( cd scratch && umask 0 && tar xvf ../TedBindist.tar )
cp scratch/info/TedDocument.rtf readme.rtf
cp rdm.txt readme.txt
:
cp ../Ted/Ted scratch/bin/Ted
$(CHOWN_CMD) scratch/bin/Ted
chmod 755 scratch/bin/Ted
:
( cd scratch && tar cvf - * | gzip -9 > ../$(BINDIST).tar.gz )
:
$(CHOWN_CMD) README
$(CHOWN_CMD) readme.rtf
$(CHOWN_CMD) readme.txt
$(CHOWN_CMD) $(BINDIST).tar.gz
$(CHOWN_CMD) $(BINDIST).lsm
$(CHOWN_CMD) installTed.sh
:
test x_$$RPM_BUILD_ROOT != x_ || chmod 644 README
test x_$$RPM_BUILD_ROOT != x_ || chmod 644 readme.rtf
test x_$$RPM_BUILD_ROOT != x_ || chmod 644 readme.txt
test x_$$RPM_BUILD_ROOT != x_ || chmod 644 $(BINDIST).tar.gz
test x_$$RPM_BUILD_ROOT != x_ || chmod 644 $(BINDIST).lsm
test x_$$RPM_BUILD_ROOT != x_ || chmod 755 installTed.sh
:
@echo Checking existence of distribution files
test -s README
test -s readme.rtf
test -s readme.txt
test -s $(BINDIST).tar.gz
test -s $(BINDIST).lsm
test -x installTed.sh
:
@date > package.shared
@echo Distribution is complete
|