##  Makefile for the MPD profile, mpdprof.

CFLAGS = -g
SHELL = /bin/sh

OBJ = mpdprof.o ../util.o


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


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


################################################################################
# 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:56 MST 2001
mpdprof.o: mpdprof.c
mpdprof.o: ../gen.h
mpdprof.o: ../util.h
