#
# Copyright (c)  1998 - 2000, Amnon Barak, The Hebrew University of Jerusalem.
# All rights reserved.
#
# Permission to use, copy and distribute this software is hereby granted
# under the terms of version 2 or any later version of the GNU General
# Public License, as published by the Free Software Foundation.
#
# THE HEBREW UNIVERSITY OF JERUSALEM  PROVIDES THIS SOFTWARE IN ITS "AS IS"
# CONDITION. THE HEBREW UNIVERSITY OF JERUSALEM DISCLAIMS  ANY LIABILITY OF
# ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
#
#
# Makefile for MOSIX debugger.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#

O_TARGET := debugger.o
O_OBJS   := udb.o

include $(TOPDIR)/Rules.make

all_targets: symtab

symtab:	symtab.o
	$(HOSTCC) $(HOSTCFLAGS) $< -o $@

