############################################################################
##
############################################################################
CUR_REL_PATH := "rda/ts/view"

include ../../../config.mk

PRE_CPPFLAGS += -I../../include -I../archfmt
PRE_LDFLAGS = -L$(SB_TS_LIB)
LDFLAGS  += -L$(IRIS_TS_LIB)
LDLIBS   += -ltsarchfmt -ldspi -luser -lm

OBJS =	tsview.o

EXEC = tsview

DEPS = $(patsubst %.o,%.d,$(OBJS))

LINK.o = $(LINK.C)

all:	$(EXEC) 

$(EXEC) : $(OBJS)

install: all $(IRIS_BIN)
	install -m 0775 -o $(IRIS_USER) -g $(IRIS_GROUP) $(STRIP_OPT) $(EXEC) $(IRIS_BIN)

test:

uninstall:
	rm -f $(IRIS_BIN)/$(EXEC)

clean:
	rm -f $(EXEC) core *.o *~ *.d *.d.bak

$(OBJS): Makefile

-include $(DEPS)
