# 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
# model0use program
#
# Information on model0use program are provided in the Use.txt file

#------------------ Suggested Makefile ----------------------------------------
# Make for model0use project

CC=

NETRALTYPREAD = netraltype.h readfile.c netraltype.h netraltype.c
OBJS = mathplus.o \
       netraltype.o \
       readfile.o \
       model0tfr.o \
       model0mainuse.o

model0use : $(OBJS)
   $(CC) $(OBJS) -o model0use

readfile.o: $(NETRALTYPREAD)
   $(CC) -c readfile.c

mathplus.o: mathplus.h mathplus.c
   $(CC) -c mathplus.c

netraltype.o: netraltype.h netraltype.c
   $(CC) -c netraltype.c

model0tfr.o : model0tfr.h $(NETRALTYPREAD) 
   $(CC) -c model0tfr.c
    
model0mainuse.o : model0mainuse.h $(NETRALTYPREAD) model0tfr.h 
   $(CC) -c model0mainuse.c
      
#------------------------------------------------------------------------------

 

NETRAL - Neuro Code 6