Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
documentation:tools:software:molden [2013/11/26 11:05] – [molden full Debian7 (gcc 4.7.2 + libs)] ltaulell | documentation:tools:software:molden [2025/03/12 15:05] (Version actuelle) – supprimée ltaulell | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
- | ====== MOLDEN ====== | ||
- | |||
- | ^ Version | ||
- | | 5.0.6 | gnu-4.7.2 | ||
- | | | **modulefile** : Molden/ | ||
- | |||
- | Pour utiliser les modules, consulter [[documentation: | ||
- | |||
- | {{INLINETOC}} | ||
- | |||
- | ===== Site officiel ===== | ||
- | |||
- | * http:// | ||
- | |||
- | |||
- | ===== Doc admin-sys PSMN ===== | ||
- | |||
- | ==== molden full Debian7 (gcc 4.7.2 + libs) ==== | ||
- | |||
- | * modifier '' | ||
- | <code make> | ||
- | # add debian detection (:27) | ||
- | ifeq ($(uname), Linux) | ||
- | os := $(shell head -n 1 /etc/issue | cut -d" " -f1) | ||
- | ifeq ($(os), Ubuntu) | ||
- | LIBSG = -L/ | ||
- | endif | ||
- | ifeq ($(os), Debian) | ||
- | LIBSG = -L/ | ||
- | endif | ||
- | |||
- | # add debian detection (:83) | ||
- | ifeq ($(uname), Linux) | ||
- | ifeq ($(os), Debian) | ||
- | #CFLAGS = -c -I/ | ||
- | CFLAGS = -c -I/ | ||
- | LIBS = -L/ | ||
- | endif | ||
- | ifeq ($(os), FreeBSD) | ||
- | CFLAGS = ${CFLAGS} -DFREEBSD | ||
- | endif | ||
- | FFLAGS = | ||
- | #LIBS = -L/ | ||
- | LDR = ${FC} | ||
- | endif | ||
- | |||
- | |||
- | </ | ||