aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2022-09-25 03:58:05 +0200
committerTheJackiMonster <thejackimonster@gmail.com>2022-09-25 03:58:05 +0200
commit839a12cc576e20a8385c157ad53fc427ff0d740e (patch)
treea05635468ace30a5f3dfc004ac4991be6f120634
parentf109d8a868546f7a7557c5667c7d76f14f262296 (diff)
downloadlibgnunetchat-839a12cc576e20a8385c157ad53fc427ff0d740e.tar.gz
libgnunetchat-839a12cc576e20a8385c157ad53fc427ff0d740e.zip
Convert single makefile to automake
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
-rw-r--r--.gitignore17
-rw-r--r--ChangeLog (renamed from CHANGES.md)0
-rw-r--r--INSTALL368
-rw-r--r--Makefile130
-rw-r--r--Makefile.am15
-rw-r--r--NEWS1
-rwxr-xr-xbootstrap2
-rw-r--r--configure.ac61
-rw-r--r--contrib/get_version.sh18
-rw-r--r--include/.gitignore5
-rw-r--r--include/Makefile.am4
l---------include/include1
-rw-r--r--src/.gitignore8
-rw-r--r--src/Makefile.am29
-rw-r--r--tests/.gitignore9
-rw-r--r--tests/Makefile.am36
16 files changed, 574 insertions, 130 deletions
diff --git a/.gitignore b/.gitignore
index cac3039..072b430 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,20 @@
1.version
2
3aclocal.m4
4autom4te.cache/
5build-aux/
6
7config.log
8config.status
9configure
10configure~
11
12libtool
13m4/
14
15Makefile.in
16Makefile
17
1# IDE specific files: 18# IDE specific files:
2.cproject 19.cproject
3.project 20.project
diff --git a/CHANGES.md b/ChangeLog
index 890920f..890920f 100644
--- a/CHANGES.md
+++ b/ChangeLog
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..e82fd21
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,368 @@
1Installation Instructions
2*************************
3
4 Copyright (C) 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free
5Software Foundation, Inc.
6
7 Copying and distribution of this file, with or without modification,
8are permitted in any medium without royalty provided the copyright
9notice and this notice are preserved. This file is offered as-is,
10without warranty of any kind.
11
12Basic Installation
13==================
14
15 Briefly, the shell command './configure && make && make install'
16should configure, build, and install this package. The following
17more-detailed instructions are generic; see the 'README' file for
18instructions specific to this package. Some packages provide this
19'INSTALL' file but do not implement all of the features documented
20below. The lack of an optional feature in a given package is not
21necessarily a bug. More recommendations for GNU packages can be found
22in *note Makefile Conventions: (standards)Makefile Conventions.
23
24 The 'configure' shell script attempts to guess correct values for
25various system-dependent variables used during compilation. It uses
26those values to create a 'Makefile' in each directory of the package.
27It may also create one or more '.h' files containing system-dependent
28definitions. Finally, it creates a shell script 'config.status' that
29you can run in the future to recreate the current configuration, and a
30file 'config.log' containing compiler output (useful mainly for
31debugging 'configure').
32
33 It can also use an optional file (typically called 'config.cache' and
34enabled with '--cache-file=config.cache' or simply '-C') that saves the
35results of its tests to speed up reconfiguring. Caching is disabled by
36default to prevent problems with accidental use of stale cache files.
37
38 If you need to do unusual things to compile the package, please try
39to figure out how 'configure' could check whether to do them, and mail
40diffs or instructions to the address given in the 'README' so they can
41be considered for the next release. If you are using the cache, and at
42some point 'config.cache' contains results you don't want to keep, you
43may remove or edit it.
44
45 The file 'configure.ac' (or 'configure.in') is used to create
46'configure' by a program called 'autoconf'. You need 'configure.ac' if
47you want to change it or regenerate 'configure' using a newer version of
48'autoconf'.
49
50 The simplest way to compile this package is:
51
52 1. 'cd' to the directory containing the package's source code and type
53 './configure' to configure the package for your system.
54
55 Running 'configure' might take a while. While running, it prints
56 some messages telling which features it is checking for.
57
58 2. Type 'make' to compile the package.
59
60 3. Optionally, type 'make check' to run any self-tests that come with
61 the package, generally using the just-built uninstalled binaries.
62
63 4. Type 'make install' to install the programs and any data files and
64 documentation. When installing into a prefix owned by root, it is
65 recommended that the package be configured and built as a regular
66 user, and only the 'make install' phase executed with root
67 privileges.
68
69 5. Optionally, type 'make installcheck' to repeat any self-tests, but
70 this time using the binaries in their final installed location.
71 This target does not install anything. Running this target as a
72 regular user, particularly if the prior 'make install' required
73 root privileges, verifies that the installation completed
74 correctly.
75
76 6. You can remove the program binaries and object files from the
77 source code directory by typing 'make clean'. To also remove the
78 files that 'configure' created (so you can compile the package for
79 a different kind of computer), type 'make distclean'. There is
80 also a 'make maintainer-clean' target, but that is intended mainly
81 for the package's developers. If you use it, you may have to get
82 all sorts of other programs in order to regenerate files that came
83 with the distribution.
84
85 7. Often, you can also type 'make uninstall' to remove the installed
86 files again. In practice, not all packages have tested that
87 uninstallation works correctly, even though it is required by the
88 GNU Coding Standards.
89
90 8. Some packages, particularly those that use Automake, provide 'make
91 distcheck', which can by used by developers to test that all other
92 targets like 'make install' and 'make uninstall' work correctly.
93 This target is generally not run by end users.
94
95Compilers and Options
96=====================
97
98 Some systems require unusual options for compilation or linking that
99the 'configure' script does not know about. Run './configure --help'
100for details on some of the pertinent environment variables.
101
102 You can give 'configure' initial values for configuration parameters
103by setting variables in the command line or in the environment. Here is
104an example:
105
106 ./configure CC=c99 CFLAGS=-g LIBS=-lposix
107
108 *Note Defining Variables::, for more details.
109
110Compiling For Multiple Architectures
111====================================
112
113 You can compile the package for more than one kind of computer at the
114same time, by placing the object files for each architecture in their
115own directory. To do this, you can use GNU 'make'. 'cd' to the
116directory where you want the object files and executables to go and run
117the 'configure' script. 'configure' automatically checks for the source
118code in the directory that 'configure' is in and in '..'. This is known
119as a "VPATH" build.
120
121 With a non-GNU 'make', it is safer to compile the package for one
122architecture at a time in the source code directory. After you have
123installed the package for one architecture, use 'make distclean' before
124reconfiguring for another architecture.
125
126 On MacOS X 10.5 and later systems, you can create libraries and
127executables that work on multiple system types--known as "fat" or
128"universal" binaries--by specifying multiple '-arch' options to the
129compiler but only a single '-arch' option to the preprocessor. Like
130this:
131
132 ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
133 CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
134 CPP="gcc -E" CXXCPP="g++ -E"
135
136 This is not guaranteed to produce working output in all cases, you
137may have to build one architecture at a time and combine the results
138using the 'lipo' tool if you have problems.
139
140Installation Names
141==================
142
143 By default, 'make install' installs the package's commands under
144'/usr/local/bin', include files under '/usr/local/include', etc. You
145can specify an installation prefix other than '/usr/local' by giving
146'configure' the option '--prefix=PREFIX', where PREFIX must be an
147absolute file name.
148
149 You can specify separate installation prefixes for
150architecture-specific files and architecture-independent files. If you
151pass the option '--exec-prefix=PREFIX' to 'configure', the package uses
152PREFIX as the prefix for installing programs and libraries.
153Documentation and other data files still use the regular prefix.
154
155 In addition, if you use an unusual directory layout you can give
156options like '--bindir=DIR' to specify different values for particular
157kinds of files. Run 'configure --help' for a list of the directories
158you can set and what kinds of files go in them. In general, the default
159for these options is expressed in terms of '${prefix}', so that
160specifying just '--prefix' will affect all of the other directory
161specifications that were not explicitly provided.
162
163 The most portable way to affect installation locations is to pass the
164correct locations to 'configure'; however, many packages provide one or
165both of the following shortcuts of passing variable assignments to the
166'make install' command line to change installation locations without
167having to reconfigure or recompile.
168
169 The first method involves providing an override variable for each
170affected directory. For example, 'make install
171prefix=/alternate/directory' will choose an alternate location for all
172directory configuration variables that were expressed in terms of
173'${prefix}'. Any directories that were specified during 'configure',
174but not in terms of '${prefix}', must each be overridden at install time
175for the entire installation to be relocated. The approach of makefile
176variable overrides for each directory variable is required by the GNU
177Coding Standards, and ideally causes no recompilation. However, some
178platforms have known limitations with the semantics of shared libraries
179that end up requiring recompilation when using this method, particularly
180noticeable in packages that use GNU Libtool.
181
182 The second method involves providing the 'DESTDIR' variable. For
183example, 'make install DESTDIR=/alternate/directory' will prepend
184'/alternate/directory' before all installation names. The approach of
185'DESTDIR' overrides is not required by the GNU Coding Standards, and
186does not work on platforms that have drive letters. On the other hand,
187it does better at avoiding recompilation issues, and works well even
188when some directory options were not specified in terms of '${prefix}'
189at 'configure' time.
190
191Optional Features
192=================
193
194 If the package supports it, you can cause programs to be installed
195with an extra prefix or suffix on their names by giving 'configure' the
196option '--program-prefix=PREFIX' or '--program-suffix=SUFFIX'.
197
198 Some packages pay attention to '--enable-FEATURE' options to
199'configure', where FEATURE indicates an optional part of the package.
200They may also pay attention to '--with-PACKAGE' options, where PACKAGE
201is something like 'gnu-as' or 'x' (for the X Window System). The
202'README' should mention any '--enable-' and '--with-' options that the
203package recognizes.
204
205 For packages that use the X Window System, 'configure' can usually
206find the X include and library files automatically, but if it doesn't,
207you can use the 'configure' options '--x-includes=DIR' and
208'--x-libraries=DIR' to specify their locations.
209
210 Some packages offer the ability to configure how verbose the
211execution of 'make' will be. For these packages, running './configure
212--enable-silent-rules' sets the default to minimal output, which can be
213overridden with 'make V=1'; while running './configure
214--disable-silent-rules' sets the default to verbose, which can be
215overridden with 'make V=0'.
216
217Particular systems
218==================
219
220 On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC
221is not installed, it is recommended to use the following options in
222order to use an ANSI C compiler:
223
224 ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
225
226and if that doesn't work, install pre-built binaries of GCC for HP-UX.
227
228 HP-UX 'make' updates targets which have the same timestamps as their
229prerequisites, which makes it generally unusable when shipped generated
230files such as 'configure' are involved. Use GNU 'make' instead.
231
232 On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
233parse its '<wchar.h>' header file. The option '-nodtk' can be used as a
234workaround. If GNU CC is not installed, it is therefore recommended to
235try
236
237 ./configure CC="cc"
238
239and if that doesn't work, try
240
241 ./configure CC="cc -nodtk"
242
243 On Solaris, don't put '/usr/ucb' early in your 'PATH'. This
244directory contains several dysfunctional programs; working variants of
245these programs are available in '/usr/bin'. So, if you need '/usr/ucb'
246in your 'PATH', put it _after_ '/usr/bin'.
247
248 On Haiku, software installed for all users goes in '/boot/common',
249not '/usr/local'. It is recommended to use the following options:
250
251 ./configure --prefix=/boot/common
252
253Specifying the System Type
254==========================
255
256 There may be some features 'configure' cannot figure out
257automatically, but needs to determine by the type of machine the package
258will run on. Usually, assuming the package is built to be run on the
259_same_ architectures, 'configure' can figure that out, but if it prints
260a message saying it cannot guess the machine type, give it the
261'--build=TYPE' option. TYPE can either be a short name for the system
262type, such as 'sun4', or a canonical name which has the form:
263
264 CPU-COMPANY-SYSTEM
265
266where SYSTEM can have one of these forms:
267
268 OS
269 KERNEL-OS
270
271 See the file 'config.sub' for the possible values of each field. If
272'config.sub' isn't included in this package, then this package doesn't
273need to know the machine type.
274
275 If you are _building_ compiler tools for cross-compiling, you should
276use the option '--target=TYPE' to select the type of system they will
277produce code for.
278
279 If you want to _use_ a cross compiler, that generates code for a
280platform different from the build platform, you should specify the
281"host" platform (i.e., that on which the generated programs will
282eventually be run) with '--host=TYPE'.
283
284Sharing Defaults
285================
286
287 If you want to set default values for 'configure' scripts to share,
288you can create a site shell script called 'config.site' that gives
289default values for variables like 'CC', 'cache_file', and 'prefix'.
290'configure' looks for 'PREFIX/share/config.site' if it exists, then
291'PREFIX/etc/config.site' if it exists. Or, you can set the
292'CONFIG_SITE' environment variable to the location of the site script.
293A warning: not all 'configure' scripts look for a site script.
294
295Defining Variables
296==================
297
298 Variables not defined in a site shell script can be set in the
299environment passed to 'configure'. However, some packages may run
300configure again during the build, and the customized values of these
301variables may be lost. In order to avoid this problem, you should set
302them in the 'configure' command line, using 'VAR=value'. For example:
303
304 ./configure CC=/usr/local2/bin/gcc
305
306causes the specified 'gcc' to be used as the C compiler (unless it is
307overridden in the site shell script).
308
309Unfortunately, this technique does not work for 'CONFIG_SHELL' due to an
310Autoconf limitation. Until the limitation is lifted, you can use this
311workaround:
312
313 CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
314
315'configure' Invocation
316======================
317
318 'configure' recognizes the following options to control how it
319operates.
320
321'--help'
322'-h'
323 Print a summary of all of the options to 'configure', and exit.
324
325'--help=short'
326'--help=recursive'
327 Print a summary of the options unique to this package's
328 'configure', and exit. The 'short' variant lists options used only
329 in the top level, while the 'recursive' variant lists options also
330 present in any nested packages.
331
332'--version'
333'-V'
334 Print the version of Autoconf used to generate the 'configure'
335 script, and exit.
336
337'--cache-file=FILE'
338 Enable the cache: use and save the results of the tests in FILE,
339 traditionally 'config.cache'. FILE defaults to '/dev/null' to
340 disable caching.
341
342'--config-cache'
343'-C'
344 Alias for '--cache-file=config.cache'.
345
346'--quiet'
347'--silent'
348'-q'
349 Do not print messages saying which checks are being made. To
350 suppress all normal output, redirect it to '/dev/null' (any error
351 messages will still be shown).
352
353'--srcdir=DIR'
354 Look for the package's source code in directory DIR. Usually
355 'configure' can determine that directory automatically.
356
357'--prefix=DIR'
358 Use DIR as the installation prefix. *note Installation Names:: for
359 more details, including other options available for fine-tuning the
360 installation locations.
361
362'--no-create'
363'-n'
364 Run the configure checks, but stop before creating any output
365 files.
366
367'configure' also accepts some other, not widely useful, options. Run
368'configure --help' for more details.
diff --git a/Makefile b/Makefile
deleted file mode 100644
index a5745fe..0000000
--- a/Makefile
+++ /dev/null
@@ -1,130 +0,0 @@
1
2VERSION = 0.1.0
3TARGET_NAME = gnunetchat
4SOURCE_DIR = src/
5INCLUDE_DIR = include/
6TESTS_DIR = tests/
7INSTALL_DIR ?= /usr/local/
8DOXYGEN_DIR = doc/
9
10PACKAGE = lib$(TARGET_NAME)
11LIBRARY = lib$(TARGET_NAME).so
12SOURCES = gnunet_chat_lib.c\
13 gnunet_chat_account.c\
14 gnunet_chat_contact.c\
15 gnunet_chat_context.c\
16 gnunet_chat_file.c\
17 gnunet_chat_group.c\
18 gnunet_chat_handle.c\
19 gnunet_chat_invitation.c\
20 gnunet_chat_lobby.c\
21 gnunet_chat_message.c\
22 gnunet_chat_uri.c\
23 gnunet_chat_util.c
24
25HEADERS = gnunet_chat_lib.h
26
27TESTS = test_gnunet_chat_handle.c\
28 test_gnunet_chat_lobby.c\
29 test_gnunet_chat_file.c
30
31LIBRARIES = gnunetarm\
32 gnunetfs\
33 gnunetidentity\
34 gnunetgns\
35 gnunetmessenger\
36 gnunetnamestore\
37 gnunetregex\
38 gnunetutil
39
40DIST_FILES = Makefile\
41 AUTHORS\
42 CHANGES.md\
43 COPYING\
44 Doxyfile\
45 HOWTO.md\
46 README.md
47
48GNU_CC ?= gcc
49GNU_LD ?= gcc
50GNU_RM ?= rm
51GNU_CP ?= cp
52GNU_TAR ?= tar
53DOXYGEN ?= doxygen
54
55CFLAGS += -fPIC -pedantic -Wall -Wextra -ggdb3
56LDFLAGS += -shared
57
58DEBUGFLAGS = -O0 -D _DEBUG
59RELEASEFLAGS = -O2 -D NDEBUG
60
61DIST_DIR = $(PACKAGE)-$(VERSION)/
62DIST_TAR = $(PACKAGE)-$(VERSION).tar.gz
63
64SOURCE_FILES = $(addprefix $(SOURCE_DIR), $(SOURCES))
65OBJECT_FILES = $(SOURCE_FILES:%.c=%.o)
66HEADER_FILES = $(addprefix $(INCLUDE_DIR), $(HEADERS))
67TEST_FILES = $(addprefix $(TESTS_DIR), $(TESTS))
68TEST_CASES = $(TEST_FILES:%.c=%.test)
69LIBRARY_FLAGS = $(addprefix -l, $(LIBRARIES))
70TEST_FLAGS = $(LIBRARY_FLAGS) -lcheck -l$(TARGET_NAME) -L.
71
72all: $(LIBRARY)
73
74debug: CFLAGS += $(DEBUGFLAGS)
75debug: $(LIBRARY)
76
77release: CFLAGS += $(RELEASEFLAGS)
78release: $(LIBRARY)
79
80%.o: %.c
81 $(GNU_CC) $(CFLAGS) -c $< -o $@ -I $(INCLUDE_DIR)
82
83$(LIBRARY): $(OBJECT_FILES)
84 $(GNU_LD) $(LDFLAGS) $^ -o $@ $(LIBRARY_FLAGS)
85
86check: $(LIBRARY) $(TEST_CASES)
87 $(foreach TEST_CASE,$(TEST_CASES),LD_LIBRARY_PATH=. ./$(TEST_CASE);)
88
89%.test: %.c
90 ln -s ../$(INCLUDE_DIR) $(addprefix $(TESTS_DIR), gnunet)
91 $(GNU_CC) $(CFLAGS) $< -o $@ -I $(TESTS_DIR) $(TEST_FLAGS)
92 $(GNU_RM) $(addprefix $(TESTS_DIR), gnunet)
93
94.PHONY: install
95
96install:
97 install -m 755 $(LIBRARY) $(addprefix $(INSTALL_DIR), lib/)
98 mkdir -p $(addprefix $(INSTALL_DIR), include/gnunet/)
99 install -m 644 $(HEADER_FILES) $(addprefix $(INSTALL_DIR), include/gnunet/)
100
101.PHONY: uninstall
102
103uninstall:
104 $(GNU_RM) -f $(addsuffix $(HEADERS), $(addprefix $(INSTALL_DIR), include/gnunet/))
105 $(GNU_RM) -f $(addsuffix $(LIBRARY), $(addprefix $(INSTALL_DIR), lib/))
106
107.PHONY: dist
108
109dist: clean
110 mkdir $(DIST_DIR)
111 $(GNU_CP) -r $(INCLUDE_DIR) $(DIST_DIR)
112 $(GNU_CP) -r $(SOURCE_DIR) $(DIST_DIR)
113 $(GNU_CP) -r $(TESTS_DIR) $(DIST_DIR)
114 $(foreach DIST_FILE,$(DIST_FILES),$(GNU_CP) $(DIST_FILE) $(DIST_DIR);)
115 $(GNU_TAR) -czf $(DIST_TAR) $(DIST_DIR)
116 $(GNU_RM) -r $(DIST_DIR)
117
118.PHONY: docs
119
120docs:
121 mkdir -p $(DOXYGEN_DIR)
122 $(DOXYGEN)
123
124.PHONY: clean
125
126clean:
127 $(GNU_RM) -f $(LIBRARY)
128 $(GNU_RM) -f $(OBJECT_FILES)
129 $(GNU_RM) -f $(TEST_CASES)
130 $(GNU_RM) -f $(DIST_TAR)
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..30e4c19
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,15 @@
1# This Makefile.am is in the public domain
2
3EXTRA_DIST = \
4 Doxyfile \
5 HOWTO.md
6
7SUBDIRS = \
8 include \
9 src \
10 tests
11
12docs:
13 mkdir -p doc
14 doxygen
15
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..898a3da
--- /dev/null
+++ b/NEWS
@@ -0,0 +1 @@
See ChangeLog.
diff --git a/bootstrap b/bootstrap
new file mode 100755
index 0000000..68341a5
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,2 @@
1#!/bin/sh
2autoreconf -vfi
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..9fb9c7d
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,61 @@
1# This file is part of GNUnet.
2# Copyright (C) 2022 GNUnet e.V.
3#
4# GNUnet is free software: you can redistribute it and/or modify it
5# under the terms of the GNU Affero General Public License as published
6# by the Free Software Foundation, either version 3 of the License,
7# or (at your option) any later version.
8#
9# GNUnet is distributed in the hope that it will be useful, but
10# WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12# Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16#
17# SPDX-License-Identifier: AGPL3.0-or-later
18#
19# Process this file with autoconf to produce a configure script.
20#
21#
22AC_INIT([libgnunetchat],[m4_esyscmd_s(sh contrib/get_version.sh)],[bug-gnunet@gnu.org])
23
24AC_CONFIG_AUX_DIR([build-aux])
25AC_CONFIG_MACRO_DIRS([m4])
26
27AC_CONFIG_HEADERS([
28 include/gnunet_chat_config.h
29])
30
31AC_CANONICAL_TARGET
32AC_CANONICAL_HOST
33
34AM_INIT_AUTOMAKE([tar-ustar])
35AM_SILENT_RULES([yes])
36
37# maybe use AC_USE_SYSTEM_EXTENSIONS?
38AH_TOP([#define _GNU_SOURCE 1])
39
40AC_PROG_AWK
41AC_PROG_CC
42AC_PROG_CC_C_O
43AC_PROG_INSTALL
44AC_PROG_LN_S
45AC_PROG_MAKE_SET
46AC_PROG_MKDIR_P
47PKG_PROG_PKG_CONFIG([0.29.2])
48
49LT_INIT([disable-static dlopen])
50
51AS_IF([test "x$enable_shared" = "xno"],
52 [AC_MSG_ERROR([GNUnet works only with shared libraries, sorry])])
53
54AC_CONFIG_FILES([
55 Makefile
56 include/Makefile
57 src/Makefile
58 tests/Makefile
59])
60
61AC_OUTPUT
diff --git a/contrib/get_version.sh b/contrib/get_version.sh
new file mode 100644
index 0000000..2a41ed4
--- /dev/null
+++ b/contrib/get_version.sh
@@ -0,0 +1,18 @@
1#!/bin/sh
2# Gets the version number from git, or from the contents of .version
3VERSION=
4if test -f ".version"
5then
6 VERSION=$(cat .version)
7fi
8if test -d "./.git"
9then
10 VERSION=$(git describe --tags)
11 VERSION=${VERSION#v}
12 echo $VERSION > .version
13fi
14if test "x$VERSION" = "x"
15then
16 VERSION="unknown"
17fi
18echo "$VERSION"
diff --git a/include/.gitignore b/include/.gitignore
new file mode 100644
index 0000000..d789faa
--- /dev/null
+++ b/include/.gitignore
@@ -0,0 +1,5 @@
1stamp-h1
2
3gnunet_chat_config.h
4gnunet_chat_config.h.in
5gnunet_chat_config.h.in~
diff --git a/include/Makefile.am b/include/Makefile.am
new file mode 100644
index 0000000..77cfc23
--- /dev/null
+++ b/include/Makefile.am
@@ -0,0 +1,4 @@
1# This Makefile.am is in the public domain
2include_HEADERS = \
3 gnunet_chat_lib.h
4
diff --git a/include/include b/include/include
new file mode 120000
index 0000000..f5030fe
--- /dev/null
+++ b/include/include
@@ -0,0 +1 @@
../include \ No newline at end of file
diff --git a/src/.gitignore b/src/.gitignore
new file mode 100644
index 0000000..4a0df08
--- /dev/null
+++ b/src/.gitignore
@@ -0,0 +1,8 @@
1.deps/
2.libs/
3
4Makefile.in
5Makefile
6
7*.lo
8*.la
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 0000000..38e2cdd
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,29 @@
1# This Makefile.am is in the public domain
2AM_CFLAGS = -I$(top_srcdir)/include/gnunet
3
4lib_LTLIBRARIES = libgnunetchat.la
5
6libgnunetchat_la_SOURCES = \
7 gnunet_chat_account.c gnunet_chat_account.h \
8 gnunet_chat_contact.c gnunet_chat_contact.h \
9 gnunet_chat_context.c gnunet_chat_context.h \
10 gnunet_chat_file.c gnunet_chat_file.h \
11 gnunet_chat_group.c gnunet_chat_group.h \
12 gnunet_chat_handle.c gnunet_chat_handle.h \
13 gnunet_chat_invitation.c gnunet_chat_invitation.h \
14 gnunet_chat_lobby.c gnunet_chat_lobby.h \
15 gnunet_chat_message.c gnunet_chat_message.h \
16 gnunet_chat_uri.c gnunet_chat_uri.h \
17 gnunet_chat_util.c gnunet_chat_util.h \
18 gnunet_chat_lib.c
19
20libgnunetchat_la_LIBADD = \
21 -lgnunetarm \
22 -lgnunetfs \
23 -lgnunetidentity \
24 -lgnunetgns \
25 -lgnunetmessenger \
26 -lgnunetnamestore \
27 -lgnunetregex \
28 -lgnunetutil
29
diff --git a/tests/.gitignore b/tests/.gitignore
new file mode 100644
index 0000000..bd393c7
--- /dev/null
+++ b/tests/.gitignore
@@ -0,0 +1,9 @@
1.deps/
2.libs/
3
4gnunet
5test-suite.log
6
7*.test
8*.log
9*.trs
diff --git a/tests/Makefile.am b/tests/Makefile.am
new file mode 100644
index 0000000..8181235
--- /dev/null
+++ b/tests/Makefile.am
@@ -0,0 +1,36 @@
1# This Makefile.am is in the public domain
2AM_CFLAGS = -I$(top_srcdir)/include
3AM_LDFLAGS = -L$(top_srcdir)
4
5check_PROGRAMS = \
6 test_gnunet_chat_handle.test \
7 test_gnunet_chat_lobby.test \
8 test_gnunet_chat_file.test
9
10AM_TESTS_ENVIRONMENT = \
11 ln -sf $(top_srcdir)/include $(top_srcdir)/tests/gnunet;
12 export LD_LIBRARY_PATH=$(top_srcdir);
13TESTS = \
14 $(check_PROGRAMS)
15
16test_gnunet_chat_handle_test_SOURCES = \
17 test_gnunet_chat_handle.c
18test_gnunet_chat_handle_test_LDADD = \
19 -lcheck \
20 $(top_builddir)/src/libgnunetchat.la
21
22test_gnunet_chat_lobby_test_SOURCES = \
23 test_gnunet_chat_lobby.c
24test_gnunet_chat_lobby_test_LDADD = \
25 -lcheck \
26 $(top_builddir)/src/libgnunetchat.la
27
28test_gnunet_chat_file_test_SOURCES = \
29 test_gnunet_chat_file.c
30test_gnunet_chat_file_test_LDADD = \
31 -lcheck \
32 $(top_builddir)/src/libgnunetchat.la
33
34clean:
35 rm $(top_srcdir)/tests/gnunet
36