-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc/manual_right_*.html : Modify descriptions for Windows
example/mgb2_vfz.frmsf : For new k grid switch src/Makefile : Add macros and bxsf2frmsf src/fermisurf.c : Bug fix for the Windows src/bxsf2frmsf : A utility to convert bxsf to frmsf doc/manual_*.tex : Translated into html
- Loading branch information
1 parent
6033254
commit 26e014c
Showing
8 changed files
with
568 additions
and
1,327 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
40 40 36 | ||
0 | ||
1 | ||
3 | ||
1.0000000 0.57735026 -0.0000000 | ||
0.0000000 1.1547005 0.0000000 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,24 @@ | ||
fermisurfer:fermisurfer.c | ||
gcc fermisurfer.c -fopenmp -O3 -lglut -lGLU -lGL -lm -o fermisurfer | ||
|
||
install: | ||
sudo cp fermisurfer /usr/local/bin/fermisurfer | ||
|
||
uninstall: | ||
sudo rm /usr/local/bin/fermisurfer | ||
|
||
clean: | ||
rm fermisurfer | ||
|
||
|
||
CC = gcc | ||
CFLAGS=-fopenmp -O3 -lglut -lGLU -lGL -lm -g | ||
|
||
# for mac | ||
#CFLAGS=-D mac -O3 -lglut -lGLU -lGL -lm | ||
|
||
all:fermisurfer bxsf2frmsf | ||
|
||
fermisurfer:fermisurfer.c | ||
$(CC) $< $(CFLAGS) -o $@ | ||
|
||
bxsf2frmsf:bxsf2frmsf.c | ||
$(CC) $< $(CFLAGS) -o $@ | ||
|
||
install: | ||
sudo cp fermisurfer /usr/local/bin/fermisurfer | ||
|
||
uninstall: | ||
sudo rm /usr/local/bin/fermisurfer | ||
|
||
clean: | ||
rm -rf fermisurfer bxsf2frmsf | ||
|
Oops, something went wrong.