source: tags/ms_r18q1/HEADERLIBS/Makefile

Last change on this file was 16266, checked in by westram, 7 years ago
  • HEADERLIBS
    • wrap submake
    • fix tar option
    • dont be verbose
File size: 453 bytes
Line 
1
2all: eigen
3
4clean:
5        rm -rf eigen/
6
7EIGEN_PATCH=eigen_fix_gcc_610_compile.patch
8
9# For some weird reason tar command below sometimes generates files with wrong ownership (happened in a virtual machine).
10# If so, the following patch command fails.
11# Workaround: patch again after 10 seconds
12
13eigen: eigen.tgz $(EIGEN_PATCH) Makefile
14        tar --no-same-owner -zxf $<
15        patch -p0 < $(EIGEN_PATCH) || \
16                ( sleep 10 ; patch -p0 < $(EIGEN_PATCH) )
17        touch eigen/
18
Note: See TracBrowser for help on using the repository browser.