Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102854754
Makefile
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 24, 21:35
Size
641 B
Mime Type
text/x-makefile
Expires
Wed, Feb 26, 21:35 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24441936
Attached To
rCOSOLVER COSOlver
Makefile
View Options
#Local code, binaries, pputils library
PREFIX = $(HOME)/Documents/cosolver/basis_transformation/T4T5
SRCDIR = $(PREFIX)
BINDIR = $(PREFIX)
OBJDIR = $(PREFIX)
LIBDIR = $(PREFIX)
MODDIR = $(PREFIX)
FMDIR = $(HOME)/Documents/cosolver/FM
F90 = mpif90
# Add Multiple-Precision Library
EXTLIBS += -L$(FMDIR)/lib -lfm
EXTINC += -I$(FMDIR)/mod
EXTMOD= -module $(MODDIR)
FOBJ = $(OBJDIR)/T4T5_mod.o
all: $(FOBJ)
$(OBJDIR)/T4T5_mod.o: T4T5_mod.f90
$(F90) -c $(F90FLAGS) $(EPPFLAGS) $(EXTMOD) $(EXTINC) T4T5_mod.f90 -o $@
clean: cleanobj cleanmod
cleanobj:
@rm -f $(OBJDIR)/*o
cleanmod:
@rm -f $(MODDIR)/*mod
@rm -f *.mod
Event Timeline
Log In to Comment