1
0
Fork 0
mirror of https://github.com/cosmo-sims/MUSIC.git synced 2024-09-19 17:03:46 +02:00
MUSIC/Makefile
2010-07-02 16:17:14 -07:00

61 lines
1.9 KiB
Makefile

##############################################################################
### compile time configuration options
MULTITHREADFFTW = yes
SINGLEPRECISION = no
HAVEHDF5 = yes
##############################################################################
### compiler and path settings
CC = g++
OPT = -O3
CFLAGS = -Wall -fopenmp
LFLAGS = -fopenmp -lgsl -lgslcblas
CPATHS = -I. -I$(HOME)/local/include -I/opt/local/include -I/usr/local/include
LPATHS = -L$(HOME)/local/lib -L/opt/local/lib -L/usr/local/lib
##############################################################################
# if you have FFTW 2.1.5 with multi-thread support, you can enable the option
ifeq ($(MULTITHREADFFTW), yes)
ifeq ($(SINGLEPRECISION), yes)
LFLAGS += -lsfftw_threads -lsrfftw_threads
else
LFLAGS += -ldfftw_threads -ldrfftw_threads
endif
else
CFLAGS += -DSINGLETHREAD_FFTW
endif
##############################################################################
# this section makes sure that the correct FFTW libraries are linked
ifeq ($(SINGLEPRECISION), yes)
CFLAGS += -DSINGLE_PRECISION
LFLAGS += -lsrfftw -lsfftw
else
LFLAGS += -ldrfftw -ldfftw
endif
##############################################################################
#if you have HDF5 installed, you can also enable the following options
ifeq ($(HAVEHDF5), yes)
OPT += -DH5_USE_16_API -DHAVE_HDF5
LFLAGS += -lhdf5
endif
##############################################################################
CFLAGS += $(OPT)
TARGET = MUSIC
OBJS = output.o transfer_function.o Numerics.o \
convolution_kernel.o densities.o cosmology.o poisson.o main.o \
$(patsubst plugins/%.cc,plugins/%.o,$(wildcard plugins/*.cc))
##############################################################################
all: $(OBJS) $(TARGET)
$(TARGET): $(OBJS)
$(CC) $(LPATHS) -o $@ $^ $(LFLAGS)
%.o: %.cc *.hh Makefile
$(CC) $(CFLAGS) $(CPATHS) -c $< -o $@
clean:
rm -rf $(OBJS)