1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-04 11:23:46 +00:00

Strip binaries

This commit is contained in:
Paul Traina 1997-11-24 09:43:42 +00:00
parent 4e869495fb
commit e814b6b0e8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=8797

View File

@ -3,7 +3,7 @@
# Date created: November, 1997
# Whom: Paul Traina <pst@freebsd.org>
#
# $Id$
# $Id: Makefile,v 1.1.1.1 1997/11/24 09:03:49 pst Exp $
#
# *WARNING* write access to ${PREFIX} is required DURING build because the
# make "all" target actually installs the gnu tools before building the
@ -42,6 +42,27 @@ MAN1= build-prc.1 cccp.1 configure.1 \
m68k-palmos-coff-size.1 \
m68k-palmos-coff-strings.1 \
m68k-palmos-coff-strip.1
STRIP= build-prc \
m68k-palmos-coff-ar \
m68k-palmos-coff-as \
m68k-palmos-coff-c++filt \
m68k-palmos-coff-exportlist \
m68k-palmos-coff-gasp \
m68k-palmos-coff-gcc \
m68k-palmos-coff-gdb \
m68k-palmos-coff-ld \
m68k-palmos-coff-nm \
m68k-palmos-coff-obj-res \
m68k-palmos-coff-objcopy \
m68k-palmos-coff-objdump \
m68k-palmos-coff-ranlib \
m68k-palmos-coff-size \
m68k-palmos-coff-strings \
m68k-palmos-coff-strip \
m68k-palmos-coff-stubgen \
pilrc \
txt2bitm
# after we apply freebsd patches, apply prc-tool's patches to gcc/gdb/...
post-patch:
@ -50,5 +71,6 @@ post-patch:
# the info files are redundant
post-install:
${RM} -rf ${PREFIX}/info
(cd ${PREFIX}/bin; strip ${STRIP})
.include <bsd.port.mk>