# ************************************************************************** # Fichero makefile. # -------------------------------------------------------------------------- # Licencia GPL. # -------------------------------------------------------------------------- # #*************************************************************************** #--- Ensamblador a usar AS=gpasm ASFLAGS= -w 2 -a inhx8m #-- Cargador para el skybot NAME1=picp-pic16f876-skypic-1 #--------------------------- # OBJETIVOS #--------------------------- all: $(NAME1).hex clean: rm -f *.hex *.lst *.cod *.bak *~ *.tm_project.cache *.pws #----------------------- # REGLAS GENERICAS #----------------------- #-- Ensamblado %.hex : %.asm ; $(AS) $(ASFLAGS) $<