TOPDIR=../../
include ${TOPDIR}/Makefile.global

CFLAGS+=-I../include -I${TOPDIR}/common

OBJS=sink-fifo.o sink-dsp.o sink-socket.o

SINKS.o: ${OBJS}
	${LD} -r -o SINKS.o ${OBJS}

all: SINKS.o

clean:
	rm -f *.o
	rm -f *~

dep:
	${CC} ${CFLAGS} -MM *.c > depend

ifeq (depend,$(wildcard depend))
include depend
endif
