#
# $Id: Makefile,v 1.5 1996/08/08 21:21:04 masaki Exp $
#

GOAL   = route_btoa
OBJS   = route_btoa.o

include ../../Make.include


all: $(GOAL)

$(GOAL): $(OBJS) route_btoa.pl $(MRT_LIBS)
	@echo "Linking: $(LD) $(LDFLAGS) $(OBJS) -o $@"
	@$(LD) $(LDFLAGS) $(OBJS) -o $@ $(LIBS)
	$(CP) ./$@ $(EXEC_PREFIX)/bin	
	$(CP) ./route_btoa.pl $(EXEC_PREFIX)/bin

clean:
	$(RM) *.o core *.core *~* $(GOAL)

depend:
	$(MAKEDEP) $(CFLAGS) $(CPPFLAGS) $(DEFINES) *.c


# DO NOT DELETE THIS LINE -- make depend depends on it.
