Menu

makefile?

Help
Mark
2006-01-05
2013-03-22
  • Mark

    Mark - 2006-01-05

    so for these patches relaesed today the makefile entries would look something like?:

    ...
    PATCH_COMMON=001_perl 002_fd
    ...

    001_perl:
            cd ${WRKSRC}/gnu/usr.bin/perl && \
            (${_obj_wrp}; ${_depend}; ${_build_wrp})

    002_fd:
            _kernel && \
            cd ${WRKSRC}/usr.sbin/authpf && \
            (${_obj}; ${_build})

     
    • Michael Erdely

      Michael Erdely - 2006-01-08

      This won't work.

      And the _kernel macro will execute after the authpf stuff if you were to use:
      002_fd: _kernel
          cd ${WORKSRC}...

      I used this:

      _authpf: .USE
         cd ${WRKSRC}/usr.sbin/authpf && \
         (${_obj}; ${_build})

      001_perl:
         cd ${WRKSRC}/gnu/usr.bin/perl && \
         (${_obj_wrp}; ${_depend_wrp}; ${_build_wrp})

      002_fd: _kernel _authpf

      Hope that helps.
      -ME
      http://erdelynet.com/

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.