Skip to content
Snippets Groups Projects
Select Git revision
  • aebec42ae32f42b65c0ae4a5011c3e63fe5cda41
  • master default protected
  • Binary
  • add-version-information
  • os-path-join
  • develop-GA
  • timeFstatmap
  • add-higher-spindown-components
  • develop-DK
  • adds-header-to-grid-search
  • v1.3
  • v1.2
  • v1.1.2
  • v1.1.0
  • v1.0.1
15 results

generate_table.py

Blame
  • Forked from Gregory Ashton / PyFstat
    Source project has a limited visibility.
    Makefile.mingw 549 B
    PWD = $(shell pwd)
    NVIDIA_SDK_INSTALL_PATH ?= /usr/local/cuda
    AMDAPPSDKROOT ?= /opt/AMDAPP
    CXX ?= i586-mingw32msvc-g++
    ARCH ?= 32
    
    TARGET = clfft_example.exe
    
    CXXFLAGS += -O3 -Wall -g -I$(NVIDIA_SDK_INSTALL_PATH)/OpenCL/common/inc -I$(AMDAPPSDKROOT)/include -I../include -D_WIN32_WINDOWS=0x0410 -malign-double
    LDFLAGS += -static-libgcc -static-libstdc++ $(PWD)/../lib/libclfft.a -lOpenCL -L../lib/amd/win$(ARCH)/2.6
    
    $(TARGET): main.cpp Makefile $(PWD)/../lib/libclfft.a
    	$(CXX) $(CXXFLAGS) main.cpp $(LDFLAGS) -o $(TARGET)
    
    clean:
    	rm -f $(TARGET)