# Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)
#
# Permission to use, copy, modify, and distribute this material
# for any purpose and without fee is hereby granted, provided
# that the above copyright notice and this permission notice
# appear in all copies, and that the name of Bellcore not be
# used in advertising or publicity pertaining to this
# material without the specific, prior written permission
# of an authorized representative of Bellcore.  BELLCORE
# MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY
# OF THIS MATERIAL FOR ANY PURPOSE.  IT IS PROVIDED "AS IS",
# WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
#
CC = dcc
CFLAGS = -r -ms -I.

LOCALCFLAGS= $(CFLAGS)

SRCS = Read8SVX.c dunpack.c iffr.c convert.c
OBJS = Read8SVX.o dunpack.o iffr.o convert.o

all: as2ss raw2ss

as2ss: $(OBJS)
        $(CC) $(LOCALCFLAGS) -o as2ss %(right)

raw2ss: raw2ss.o
        $(CC) $(LOCALCFLAGS) -o raw2ss %(right)

$(OBJS) : $(SRCS)
        $(CC) $(LOCALCFLAGS) -o %(left) %(right) -c

clean:
        -Delete as2ss raw2ss *.o *.BAK

