mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 23:31:12 +00:00
27 lines
1.3 KiB
Text
27 lines
1.3 KiB
Text
LS_OPTFLAGS:= -O2 -ffast-math -fomit-frame-pointer $(HEALPIX_EXTRAFLAGS)
|
|
LS_DEBUGFLAGS:= #-g
|
|
LS_OMPFLAGS:= #-fopenmp
|
|
LS_PROFILEFLAGS:= #-pg
|
|
LS_STATICFLAGS:= #-static
|
|
LS_PICFLAGS:= -fPIC
|
|
|
|
EXTERNAL_CFITSIO= yes
|
|
CFITSIO_EXT_PREFIX= ${HEALPIX_BASE_PATH}/../cfitsio
|
|
CFITSIO_EXT_LIB= ${CFITSIO_EXT_PREFIX}/libcfitsio.a
|
|
CFITSIO_EXT_INC= ${CFITSIO_EXT_PREFIX}
|
|
|
|
CC= gcc
|
|
CL= gcc
|
|
CWARNFLAGS= -Wall -Wextra -Wno-long-long -Wno-unknown-pragmas -Wshadow -Wmissing-prototypes -Wfatal-errors
|
|
CCFLAGS_NO_C= $(CWARNFLAGS) $(LS_PROFILEFLAGS) $(LS_DEBUGFLAGS) $(LS_OMPFLAGS) $(LS_PICFLAGS) $(LS_OPTFLAGS) -fno-strict-aliasing --std=gnu89 -pedantic -fdata-sections -ffunction-sections
|
|
CCFLAGS= $(CCFLAGS_NO_C) -c
|
|
CLFLAGS= -L. -L$(LIBDIR) $(LS_PROFILEFLAGS) $(LS_OMPFLAGS) $(LS_STATICFLAGS) $(LS_PICFLAGS) $(LS_OPTFLAGS) -lm
|
|
|
|
CXX= g++
|
|
CXXL= g++
|
|
CXXWARNFLAGS= -Wall -Wextra -Wstrict-aliasing=2 -Wundef -Wshadow -Wwrite-strings -Wredundant-decls -Woverloaded-virtual -Wcast-qual -Wcast-align -Wpointer-arith -Wold-style-cast -Wno-unknown-pragmas -Wfatal-errors
|
|
CXXCFLAGS_NO_C= $(CXXWARNFLAGS) $(LS_PROFILEFLAGS) $(LS_DEBUGFLAGS) $(LS_OMPFLAGS) $(LS_PICFLAGS) $(LS_OPTFLAGS) -ansi -fdata-sections -ffunction-sections
|
|
CXXCFLAGS= $(CXXCFLAGS_NO_C) -c
|
|
CXXLFLAGS= -L. -L$(LIBDIR) $(LS_PROFILEFLAGS) $(LS_OMPFLAGS) $(LS_STATICFLAGS) $(LS_PICFLAGS) $(LS_OPTFLAGS)
|
|
|
|
ARCREATE= libtool -static -o
|