Ignore:
Timestamp:
Apr 29, 2007, 8:02:22 PM (18 years ago)
Author:
bird
Message:

installation hacks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/essentials/dev-lang/perl/Makefile.kmk

    r3220 r3223  
    55GMAKE ?= $(PATH_KBUILD_BIN)/kmk_gmake$(HOSTSUFF_EXE)
    66
    7                                
     7
    88EXTRAS :=
    99ifndef NOT_BOOTSTRAPPING_KNIX
     
    1919endif
    2020
     21#
     22# The usual targets.
     23#
     24
     25# configuring
     26.PHONY: config
    2127config:
    2228        $(RM) -f config.sh Policy.sh
     
    3642                -Dcf_by='kNIX'
    3743               
     44# building
     45.PHONY: build
    3846build:
    3947        +$(GMAKE) MAKE=$(GMAKE)
    4048
     49# testing
     50.PHONY: check test
    4151check test:
    4252        +$(GMAKE) MAKE=$(GMAKE) test
    4353
     54# installation
     55.PHONY: install
     56install:
     57        +$(GMAKE) MAKE=$(GMAKE) \
     58                INSTALLPREFIXEXP=$(PATH_INS)/usr \
     59                bin=$(PATH_INS)/usr/bin \
     60                scriptdir=$(PATH_INS)/usr/bin \
     61                shrpdir=$(PATH_INS)/usr/lib/perl5/5.8.8/os2/CORE \
     62                privlib=$(PATH_INS)/usr/lib/perl5/5.8.8 \
     63                man1dir=$(PATH_INS)/usr/share/man/man1 \
     64                man3dir=$(PATH_INS)/usr/share/man/man3 \
     65                \
     66                DESTDIR=$(PATH_INS) \
     67                INSTALLFLAGS="-V" \
     68                \
     69                install
     70# packing
     71.PHONY: pass_packing
     72pass_packing: defaultpacking
     73
     74
     75#
     76# perl specific.
     77#
     78
     79.PHONY: depend
     80depend:
     81        $(RMDIR)  $(wildcard .depending ./*/.depending ./*/*/.depending ./*/*/*/.depending)
     82        +$(GMAKE) MAKE=$(GMAKE) depend
     83
Note: See TracChangeset for help on using the changeset viewer.