#**************************************************************************
#* FILE NAME: makefile                        COPYRIGHT (c) MOTOROLA 2003 *
#* VERSION: 1.0                                                           *
#*                                                                        *
#* DESCRIPTION: This is the makefile for the ETPU set1 standard set of    *
#* functions.                                                             *
#*========================================================================*
#* MAKE: GNU make        VERSION: 3.79.1                                  *
#* AUTHOR: Jeff Loeliger                                                  *
#*                                                                        *
#* HISTORY                                                                *
#* REV      AUTHOR      DATE       DESCRIPTION OF CHANGE                  *
#* ---   -----------  ---------    ---------------------                  *
#* 1.0   J. Loeliger  15/Sep/03    Initial version of file.               *
#**************************************************************************

CC = dcc
CFLAGS = -tPPC5554EF -c -g -Xnested-interrupts -Xdebug-dwarf2

#############################
DEL = del


#
#CPU targets
#
gpio: fs_gpio.o

fs_gpio.o : fs_gpio.c fs_gpio.h typedefs.h siu_struct.h makefile 
	$(CC) $(CFLAGS) $<
	
clean:
	$(DEL) *.db *.ou1 *.blk *.db2 *.map *.hex *lst *.err *.elf __*.* *.o


