# Cette partie du fichier peut être copié dans un éditeur de texte, et sauvegardé
# comme fichier "Makefile" dans le répertoire de ce fichier.
# En fonction de la configuration de votre machine, quelques modifications doivent
# être faites à ce fichier Makefile
# Par exemple, vous pouvez changer :
# le compilateur C
# la localisation des fichiers communs
# Une fois ces modifia=cations apportées, appelez l'utilitaire Make pour compiler
# le programme model0use
#
# Les informations sur le programme model0use sont fournies dans le fichier Use.txt.
# The following part of the file can be copied into a text editor, and saved
# as "Makefile" file in the folder of this file.
# Depending upon the configuration of your machine, some modification must be
# done on this Makefile.
# For instance, you may change :
# the C compiler
# the common files location
# Once the modification are done, call the make utity in order to compile the
# model0train program
#
# Information on model0train program are provided in the train.txt file
#------------------ Suggested Makefile ----------------------------------------
# Make for model0train project
CC=
NETRALTYPREAD = netraltype.h readfile.c netraltype.h readfile.c
NETRALTYP = netraltype.h netraltype.c
OBJS = mathplus.o \
netraltype.o \
readfile.o \
model0tfr.o \
model0grd.o \
model0lev.o \
model0trn.o \
model0maintrain.o
model0train : $(OBJS)
$(CC) $(OBJS) -o model0train
readfile.o: $(NETRALTYPREAD)
$(CC) -c readfile.c
mathplus.o: mathplus.h mathplus.c
$(CC) -c mathplus.c
netraltype.o: $(NETRALTYP)
$(CC) -c netraltype.c
model0tfr.o : model0tfr.h $(NETRALTYPREAD)
$(CC) -c model0tfr.c
model0grd.o : model0grd.h $(NETRALTYPREAD) model0tfr.h
$(CC) -c model0grd.c
model0lev.o : model0lev.h $(NETRALTYPREAD) model0tfr.h model0grd.h
$(CC) -c model0lev.c
model0trn.o : model0trn.h $(NETRALYTYP) model0tfr.h model0grd.h model0lev.h
$(CC) -c model0trn.c
model0maintrain.o : model0maintrain.h $(NETRALTYPREAD) model0tfr.h model0lev.h model0trn.h
$(CC) -c model0maintrain.c
#------------------------------------------------------------------------------*/
NETRAL - Neuro Code 6