4
1
mirror of https://github.com/pfloos/quack synced 2024-06-30 00:44:31 +02:00
quack/src/Makefile.common

14 lines
423 B
Makefile
Raw Normal View History

2020-09-30 09:59:18 +02:00
IDIR =$(QUACK_ROOT)/include
MODDIR=$(QUACK_ROOT)/src/modules
FC = gfortran -I$(IDIR) -J$(MODDIR) -I$(MODDIR)
#FC = ifort -I$(IDIR) -module $(MODDIR)
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