This repository has been archived by the owner on Nov 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
79 lines (68 loc) · 1.69 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
ACLOCAL_AMFLAGS = -I m4
lib_LTLIBRARIES = libnet6.la
# current : revision : age
# ^ : ^ : ^
# | : minor : |
# interface : changes : compatibility
libnet6_la_LDFLAGS = -version-info 0:0:0 -release 1.3
libnet6_la_LIBADD = $(libnet6_LIBS)
if WIN32
libnet6_la_LIBADD += -lws2_32 -lintl
libnet6_la_LDFLAGS += -no-undefined
endif
INCLUDES = $(libnet6_CFLAGS) -I$(srcdir)/inc
pkginclude_HEADERS = \
inc/enum_ops.hpp \
inc/non_copyable.hpp \
inc/gettext_package.hpp \
inc/common.hpp \
inc/default_accumulator.hpp \
inc/error.hpp \
inc/main.hpp \
inc/serialise.hpp \
inc/address.hpp \
inc/socket.hpp \
inc/encrypt.hpp \
inc/select.hpp \
inc/queue.hpp \
inc/packet.hpp \
inc/connection.hpp \
inc/user.hpp \
inc/object.hpp \
inc/local.hpp \
inc/client.hpp \
inc/server.hpp \
inc/host.hpp
libnet6_la_SOURCES = \
src/non_copyable.cpp \
src/gettext_package.cpp \
src/common.cpp \
src/default_accumulator.cpp \
src/error.cpp \
src/main.cpp \
src/serialise.cpp \
src/address.cpp \
src/socket.cpp \
src/encrypt.cpp \
src/select.cpp \
src/queue.cpp \
src/packet.cpp \
src/connection.cpp \
src/user.cpp \
src/object.cpp \
src/local.cpp \
src/client.cpp \
src/server.cpp \
src/host.cpp
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = net6-1.3.pc
# gettext
SUBDIRS = po .
EXTRA_DIST = config.rpath
libnet6_la_CPPFLAGS = -DLOCALEDIR=\""$(datadir)/locale"\"
# Fix some permissions if they are not set properly when building the tarball
dist-hook:
chmod u+x $(distdir)/ltmain.sh $(distdir)/missing \
$(distdir)/install-sh $(distdir)/config.guess \
$(distdir)/config.sub $(distdir)/config.rpath \
$(distdir)/depcomp