Compare commits

...
Sign in to create a new pull request.

10 commits

Author SHA1 Message Date
Susi Lehtola
a14139b146 Update to 2.0.0. 2013-10-15 15:11:17 +03:00
Susi Lehtola
36fe36c4a8 Update to 2.0.0. 2013-10-15 15:10:57 +03:00
Fedora Release Engineering
a8a336800a dist-git conversion 2010-07-29 15:12:23 +00:00
Jussi Lehtola
64b98c54b4 Update to 1.2. 2010-01-27 12:21:04 +00:00
Bill Nottingham
47d1f2efb1 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:15:14 +00:00
Jussi Lehtola
98b9f7c2e8 Fix location of Fortran modules. Use ATLAS instead of LAPACK. Fix test
phase.
2009-09-16 17:24:22 +00:00
Jussi Lehtola
811d5aa547 Retry fixing epel build. 2009-05-16 08:10:57 +00:00
Jussi Lehtola
fe51d4f7ed Fix EPEL build. 2009-05-16 08:06:23 +00:00
Jussi Lehtola
8da0197b7a Imported in Fedora 2009-05-16 07:53:38 +00:00
65eb9146a6 Initialize branch EL-5 for wannier90 2009-05-15 23:51:59 +00:00
2 changed files with 25 additions and 2 deletions

2
.gitignore vendored
View file

@ -1,2 +0,0 @@
wannier90-1.2.tar.gz
/wannier90-2.0.0.tar.gz

25
wannier90-1.1-shlib.patch Normal file
View file

@ -0,0 +1,25 @@
diff -up wannier90-1.1/src/Makefile.orig wannier90-1.1/src/Makefile
--- wannier90-1.1/src/Makefile.orig 2007-08-22 19:22:27.000000000 +0300
+++ wannier90-1.1/src/Makefile 2009-05-15 15:36:00.000000000 +0300
@@ -8,16 +8,15 @@ OBJS = constants.o io.o utility.o para
OBJS2 = wannier_lib.o
-LIBRARY = ../libwannier.a
+LIBRARY = ../libwannier.so
-prog: $(OBJS)
- $(F90) wannier_prog.F90 $(LDOPTS) $(OBJS) $(LIBS) -o ../wannier90.x
+prog: $(LIBRARY)
+ $(F90) wannier_prog.F90 $(LDOPTS) -L.. -lwannier $(LIBS) -o ../wannier90.x
libs: $(LIBRARY)
-$(LIBRARY): $(OBJS) $(OBJS2)
- $(AR) $(ARFLAGS) $(LIBRARY) $(OBJS2) $(OBJS)
-
+$(LIBRARY): $(OBJS) $(OBJS2)
+ $(F90) $(FCOPTS) -shared -o $(LIBRARY) $(OBJS2) $(OBJS)
clean: