making some funny gif89a
This commit is contained in:
parent
23f3eeb032
commit
25b2f353cd
3
GrafAnim/.gitignore
vendored
Normal file
3
GrafAnim/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
essai
|
||||
|
12
GrafAnim/Makefile
Normal file
12
GrafAnim/Makefile
Normal file
@ -0,0 +1,12 @@
|
||||
#
|
||||
# Fortraneries by tTh - Graf Anim
|
||||
#
|
||||
|
||||
GFOPT = -Wall -Wextra -g -time
|
||||
|
||||
essai: essai.f90 usegenplot.o Makefile
|
||||
gfortran $(GFOPT) $< usegenplot.o -o $@
|
||||
|
||||
usegenplot.o: usegenplot.f90 Makefile
|
||||
gfortran $(GFOPT) -c $<
|
||||
|
5
GrafAnim/README.md
Normal file
5
GrafAnim/README.md
Normal file
@ -0,0 +1,5 @@
|
||||
# GrafAnim
|
||||
|
||||
Quelques essais approximatifs pour faire des graphiques inutiles,
|
||||
dans une démarche mettant en avant la techno-futilité
|
||||
|
13
GrafAnim/essai.f90
Normal file
13
GrafAnim/essai.f90
Normal file
@ -0,0 +1,13 @@
|
||||
program essai
|
||||
|
||||
use usegenplot
|
||||
implicit none
|
||||
|
||||
! integer :: foo, bar
|
||||
|
||||
write(0, *) "------------ essai graf anim ---------------"
|
||||
|
||||
call init_genplot('essai.genplot')
|
||||
|
||||
end program
|
||||
|
6
GrafAnim/go.sh
Executable file
6
GrafAnim/go.sh
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
make essai
|
||||
|
19
GrafAnim/usegenplot.f90
Normal file
19
GrafAnim/usegenplot.f90
Normal file
@ -0,0 +1,19 @@
|
||||
module usegenplot
|
||||
|
||||
implicit none
|
||||
contains
|
||||
|
||||
! -------------------------------------------------------------------
|
||||
|
||||
subroutine init_genplot(filename)
|
||||
|
||||
character(200) :: filename
|
||||
|
||||
write(0, *) '-------- init genplot '
|
||||
|
||||
end subroutine
|
||||
|
||||
! -------------------------------------------------------------------
|
||||
|
||||
end module
|
||||
|
Loading…
Reference in New Issue
Block a user