#  Makefile for public portion of the POSIX pthreads API

include ../Rules.runtime

EXC_LINKS  = ${UTILS} ${EXC_LIB} ${D4_LIB} ${PTHREAD_LIB}
LINKS      = ${UTILS} ${PTHREAD_LIB}

all: sig exc

exc: exc_test.c
	${CC} ${CFLAGS} -D_DCE_COMPAT_ exc_test.c ${EXC_LINKS} -o exc

sig: sig.c ${LINKS}
	${CC} ${CFLAGS} sig.c ${LINKS} -o sig

clean:
	rm -f *.o *.bak *.rem exc sig *~
