# # Makefile for WSOCK.VXD functions for libsocket # Written by Richard Dawe # # libsocket Copyright 1997, 1998 by Indrek Mandre # libsocket Copyright 1997-1999 by Richard Dawe # include ../../Makefile.cfg CFLAGS += -I../../include # Objects to build OBJS = gethostn.o perror.o strerror.o uname.o all: $(OBJS) .PHONY: all clean distclean dep clean: rm -f $(OBJS) distclean: clean rm -f *.\$$\$$\$$ rm -f *~ dep: $(CC) $(CFLAGS) -M *.c > depend.dep $(OBJS): include depend.dep