Skip to content
Snippets Groups Projects
Select Git revision
  • add-clFFT_GetSize
  • master default protected
  • add-dylib-target
  • counting-mallocs
  • remove-CPU-constraint
  • Add-PKGBUILD
  • HSA
  • clmathfft
  • longer_dft_support
  • current_fgrp_apps
  • current_brp_apps
11 results

Makefile

Blame
  • Forked from einsteinathome / libclfft
    4 commits behind, 4 commits ahead of the upstream repository.
    Makefile 417 B
    default: linux
    
    linux: static shared sample
    
    macos: linux
    
    static:
    	$(MAKE) -C src static
    
    shared:
    	$(MAKE) -C src shared
    
    sample:
    	$(MAKE) -C example
    
    win32:
    	$(MAKE) -C src -f Makefile.mingw
    	ARCH=32 $(MAKE) -C example -f Makefile.mingw
    
    win64:
    	$(MAKE) -C src -f Makefile.mingw
    	ARCH=64 $(MAKE) -C example -f Makefile.mingw
    
    clean:
    	$(MAKE) -C src clean
    	$(MAKE) -C example clean
    
    install:
    	$(MAKE) -C src install