mirror of
https://github.com/TREX-CoE/fparser.git
synced 2024-11-03 20:54:11 +01:00
15 lines
264 B
Makefile
15 lines
264 B
Makefile
|
|
FC = ifort
|
|
FCFLAGS = -O2
|
|
|
|
LIBS = -L/usr/local/lib
|
|
INCLUDES = -I/usr/local/include
|
|
|
|
LDFLAGS = /usr/local/lib/libfdf.a
|
|
|
|
SOURCE = iochamp.f90
|
|
MODULES = m_periodic_table.F90 m_keywords.F90
|
|
OBJECTS = m_periodic_table.o m_keywords.o
|
|
PROJECT = iochamp.o
|
|
|