diff options
Diffstat (limited to 'palm/prc-tools/Makefile')
-rw-r--r-- | palm/prc-tools/Makefile | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/palm/prc-tools/Makefile b/palm/prc-tools/Makefile index a33e0b2d86b3..adc1e681cd85 100644 --- a/palm/prc-tools/Makefile +++ b/palm/prc-tools/Makefile @@ -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> |