# Copyright Notice
# ================
# BOCHS is Copyright 1994 by Kevin P. Lawton.
# 
# BOCHS is shareware for PERSONAL USE only.
# 
# For more information, read the file 'LICENSE' included in the bochs
# distribution.  If you don't have access to this file, or have questions
# regarding the licensing policy, the author may be contacted via:
# 
#     US Mail:  Kevin Lawton
#               528 Lexington St.
#               Waltham, MA 02154
# 
#     EMail:    bochs@tiac.net



include ../Makefile.config


# ===========================================================
# end of configurable options
# ===========================================================


BX_OBJS = db_decode.o db_main.o db_decode_grp.o db_groups.o

BX_INCLUDES = db_debug.h

BX_INCDIRS += -I..

.c.o:
	$(BX_CC) -c $(BX_CFLAGS) $(BX_INCDIRS) $<



libbx_debug.a: $(BX_OBJS)
	-rm -f libbx_debug.a
	ar rv libbx_debug.a $(BX_OBJS)
	$(BX_RANLIB) libbx_debug.a

$(BX_OBJS): $(BX_INCLUDES)


clean:
	rm -f *~ *.o \#*\# libbx_debug.a

