#
# dmakefile for regexp(3) stuff
#
LIB = regexp
LIBS = dlib:$(LIB)s.lib
LIBSR = dlib:$(LIB)sr.lib
LIBSRP = dlib:$(LIB)srp.lib

foo :
    echo "usage: dmake [s] [sr] [srp]"

s :
    -delete t:reg#?.o
    libmake files.relib -o t: -l $(LIBS)

sr :
    -delete t:reg#?.o
    libmake files.relib -mRR -o t: -l $(LIBSR)

srp :
    -delete t:reg#?.o
    libmake files.relib -mRR -proto -o t: -l $(LIBSRP)

