# **************************************************************************
# Fichero makefile.
# --------------------------------------------------------------------------
# Licencia GPL. Juan Gonzalez Gomez
# --------------------------------------------------------------------------
#
#***************************************************************************

#---- Compilador
CC = gcc
CFLAGS = -Wall
LIB =  -lode

NAME1= gravedad
DEP1 = $(NAME1).o 

all: $(NAME1) 

#---------------------------
#       OBJETIVOS
#---------------------------

#------------------------------
$(NAME1): $(DEP1)
	    $(CC) -o $@ $(DEP1) $(LIB) 
			
clean::
	  rm -f $(NAME1) $(DEP1) *.bak *~
