# Makefile for ssrc

CC = cc
LD = link

OBJ = o.dbesi0 o.fftsg_fl o.ssrc
LIB = C:o.stubs

.INIT:
	-cdir o

.SUFFIXES:	.o .c

.c.o:
	$(CC) -c -o $@ $<

ssrc:	$(OBJ)
	$(LD) -o $@ $(OBJ) $(LIB)

clean:
	-ifthere ssrc then wipe ssrc ~cf~v
	-ifthere o.* then wipe o.* ~cf~v
