mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-28 14:07:17 +03:00
fae797e220
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.
39 lines
695 B
Makefile
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)
|