barrier/lib/net/Makefile.am
crs fae797e220 Moved version header to base and it now uses VERSION macro
from config.h if available (which means version is now a
string, not three integers).  Changed version to 1.0.0 and
protocol version to 1.0.  And added MAINTAINERCLEANFILES
to makefiles to remove generated files.
2002-07-31 16:57:26 +00:00

39 lines
695 B
Makefile

## Process this file with automake to produce Makefile.in
NULL =
DEPTH = ../..
EXTRA_DIST = \
net.dsp \
$(NULL)
MAINTAINERCLEANFILES = \
Makefile.in \
$(NULL)
noinst_LIBRARIES = libnet.a
libnet_a_SOURCES = \
CNetwork.cpp \
CNetworkAddress.cpp \
CTCPListenSocket.cpp \
CTCPSocket.cpp \
CTCPSocketFactory.cpp \
XNetwork.cpp \
XSocket.cpp \
CNetwork.h \
CNetworkAddress.h \
CTCPListenSocket.h \
CTCPSocket.h \
CTCPSocketFactory.h \
IDataSocket.h \
IListenSocket.h \
ISocket.h \
ISocketFactory.h \
XNetwork.h \
XSocket.h \
$(NULL)
INCLUDES = \
-I$(DEPTH)/lib/base \
-I$(DEPTH)/lib/mt \
-I$(DEPTH)/lib/io \
$(NULL)