#
# (C) P.Horton 2004,2005,2006
#
# $Id: Makefile 186 2006-01-17 23:03:58Z pdh $
#
# This code is covered by the GNU General Public License. For details see the file "COPYING".
#

TARG= elf2rfx
OBJS= elf2rfx.o

CFLAGS= -Werror -Wall -Wstrict-prototypes -fomit-frame-pointer -O2 -pipe -fno-strict-aliasing

binary: $(TARG)

$(TARG): $(OBJS)

clean:
	rm -rf $(TARG) $(OBJS)

.PHONY: binary clean
