Help for this page

Select Code to Download


  1. or download this
    sub MY::postamble {
    '
    ...
        cd mylib && $(MAKE) $(PASSTHRU)
    ';
    }
    
  2. or download this
    sub MY::top_targets {
    '
    ...
        $(RANLIB) libmylib$(LIB_EXT)
    ';
    }
    
  3. or download this
        $(AR) cr libmylib$(LIB_EXT) $(O_FILES)
    
  4. or download this
        $(AR) /out:$(LIB_EXT) $(O_FILES)