j\'ai un problème de compilation d\'un makefile sous xp.
J\'utilise MinGW avec g95,gcc,... Je dois utiliser la commande make pour générer un fichier mais j\'ai un message d\'erreur.
Voici mon makefile:
---------------------------------------------------------------------------------
#
# Makefile for the clawpack code:
#
# To make an executable, type: make xclaw
# (from the application sub-directory)
#
# To make an executable that generates
# output in HDF (version 4) format, type: make xclawhdf
# (from the application sub-directory)
#
# To compile a single file.f type: make file.o
# (from the application sub-directory)
#
# To compile the lib library files type: make lib
# (from the claw/clawpack/2d/lib sub-directory)
#
# To combine all source files type: make program
# (from the application sub-directory)
# (sometimes easier to debug all in one)
#
FFLAGS = -O
LFLAGS =
F77 = g95 -c
LINK = g95
CLAW = c:\\Temp\\tp_clawpack