##	Makefile for the MPD linker, mpdl.



CFLAGS = -g
SHELL = /bin/sh



OBJ = main.o limits.o resource.o gen.o ../util.o

SABER = $(OBJ:o=c)


mpdl:$&	$(OBJ)
	. ../paths.sh; $(CC) $(CFLAGS) -o mpdl $(OBJ) $$LIBC


tar:
	@tar cBf - Makefile *.[ch] 


clean:
	rm -f *.o core


depend:
	sh ../depend.sh


lint:
	lint *.c ../util.c >lint.raw
	sed -f ../lint.sed <lint.raw >lint.out

tags:
	/usr/local/gnuemacs/etc/etags *.c
TAGS:
	ctags *.c

saber:	$(SABER)
	#load $(SABER)
	#stop in doexec


################################################################################
# The rest of this file is generated by `make depend'.  Don't change it by hand.
################################################################################

# >>DO NOT DELETE THIS LINE<< #
#   "make depend" was last run:  Tue Jan 2 14:50:48 MST 2001
gen.o: gen.c
gen.o: globals.h
gen.o: funcs.h
gen.o: ../gen.h
gen.o: ../util.h
gen.o: ../config.h
gen.o: ../paths.h
gen.o: ../mpdmulti.h
limits.o: limits.c
limits.o: globals.h
limits.o: funcs.h
limits.o: ../gen.h
limits.o: ../util.h
limits.o: ../config.h
main.o: main.c
main.o: globals.h
main.o: funcs.h
main.o: ../gen.h
main.o: ../util.h
main.o: ../config.h
main.o: ../paths.h
resource.o: resource.c
resource.o: globals.h
resource.o: funcs.h
resource.o: ../gen.h
resource.o: ../util.h
resource.o: ../config.h
