4
1
mirror of https://github.com/pfloos/quack synced 2024-07-28 08:05:10 +02:00
quack/src/Makefile.common

13 lines
375 B
Makefile
Raw Normal View History

2020-09-30 09:59:18 +02:00
IDIR =$(QUACK_ROOT)/include
2020-10-12 14:25:30 +02:00
FC = gfortran -I$(IDIR) -J$(IDIR)
#FC = ifort -I$(IDIR) -module $(IDIR)
AR = libtool
2020-09-30 09:59:18 +02:00
ifeq ($(DEBUG),1)
FFLAGS = -Wall -g -msse4.2 -fcheck=all -Waliasing -Wampersand -Wconversion -Wsurprising -Wintrinsics-std -Wno-tabs -Wintrinsic-shadow -Wline-truncation -Wreal-q-constant
else
FFLAGS = -Wall -Wno-unused -Wno-unused-dummy-argument -O3
endif