#
# makecasetables Makefile
#
# Copyright 2004-2005, Broadcom Corporation
# All Rights Reserved.
#
# This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
# the contents of this file may not be disclosed to third parties, copied
# or duplicated in any form, in whole or in part, without the prior
# written permission of Broadcom Corporation.
#

CFLAGS	+= -I. -Wall
#CFLAGS	+= -g -DDEBUG
CFLAGS	+= -s -O2
LDFLAGS	+=

all: makecasetables

clean:
	rm -f *.o *~ makecasetables

install: all
	install -D makecasetables $(INSTALLDIR)/usr/sbin/makecasetables
	$(STRIP) $(INSTALLDIR)/usr/sbin/makecasetables

makecasetables: makecasetables.o
	$(CC) -o $@ $^ $(LDFLAGS)
