#
#                       Make file for clndrv
#                         Solaris Version
#
# -lposix4 is required for time_ew calls
#
CFLAGS = -D_REENTRANT $(GLOBALFLAGS)


OBJ = clndrv.o

clndrv: $(OBJ)
	cc -o clndrv $(OBJ) -mt -lsunmath -lm -lposix4 -lthread -lc

install:
	cp clndrv ../../bin

