mirror of
https://github.com/clearlinux/make-fmv-patch.git
synced 2026-04-28 19:13:34 +00:00
Fix https://github.com/clearlinux/make-fmv-patch/issues/2 Signed-off-by: Victor Rodriguez <victor.rodriguez.bahena@intel.com>
10 lines
371 B
Makefile
10 lines
371 B
Makefile
all:
|
|
gcc -O2 -ftree-vectorize loop-test.c -o loop-test -fopt-info-vec &> loop-build.log
|
|
g++ -O2 -ftree-vectorize max-test.cpp -o max-test -fopt-info-vec &> max-build.log
|
|
clean:
|
|
@find . -type f -executable -exec sh -c "file -i '{}' | grep -q 'x-executable; charset=binary'" \; -print | xargs rm -f
|
|
distclean:
|
|
@rm -rf *.c.patch
|
|
@rm -rf *.cpp.patch
|
|
@rm -rf *build.log
|