diff options
author | Guillaume Friloux <guillaume.friloux@gmail.com> | 2013-12-12 15:03:09 +0100 |
---|---|---|
committer | Guillaume Friloux <guillaume.friloux@gmail.com> | 2013-12-12 15:03:09 +0100 |
commit | baadbb3ca615ca34a09244bcdf3924664816c91d (patch) | |
tree | 541527a3339bdbb6aeb7e40bacfb0bbc0a609b69 /src | |
parent | ce4a3e44b0f399d11378f29fdc6d4b953b4ae7eb (diff) |
Rewrite of part of build system.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 4 | ||||
-rw-r--r-- | src/bin/Makefile.am | 8 | ||||
-rw-r--r-- | src/bin/Makefile.mk | 18 |
3 files changed, 18 insertions, 12 deletions
diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index addf4ca..0000000 --- a/src/Makefile.am +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | MAINTAINERCLEANFILES = Makefile.in | ||
2 | |||
3 | SUBDIRS = bin | ||
4 | |||
diff --git a/src/bin/Makefile.am b/src/bin/Makefile.am deleted file mode 100644 index 9742849..0000000 --- a/src/bin/Makefile.am +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | MAINTAINERCLEANFILES = Makefile.in | ||
2 | |||
3 | bin_PROGRAMS = smman | ||
4 | |||
5 | smman_SOURCES = main.c rules.c spy.c logfiles.c send.c date.c conf.c logmessages.c libconf.c | ||
6 | |||
7 | smman_LDFLAGS = @eina_LIBS@ @ecore_LIBS@ @libcurl_LIBS@ | ||
8 | smman_CPPFLAGS = -W -Wall -O2 -g @eina_CFLAGS@ @ecore_CFLAGS@ @libcurl_CFLAGS@ -DREVISION=\"@revision_number@\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE | ||
diff --git a/src/bin/Makefile.mk b/src/bin/Makefile.mk new file mode 100644 index 0000000..a789388 --- /dev/null +++ b/src/bin/Makefile.mk | |||
@@ -0,0 +1,18 @@ | |||
1 | MAINTAINERCLEANFILES += \ | ||
2 | src/bin/sds_horodatage/*.gc{no,da} | ||
3 | |||
4 | bin_PROGRAMS += \ | ||
5 | src/bin/smman | ||
6 | |||
7 | src_bin_smman_SOURCES = \ | ||
8 | src/bin/conf.c \ | ||
9 | src/bin/date.c \ | ||
10 | src/bin/libconf.c \ | ||
11 | src/bin/logfiles.c \ | ||
12 | src/bin/logmessages.c \ | ||
13 | src/bin/main.c \ | ||
14 | src/bin/rules.c \ | ||
15 | src/bin/send.c \ | ||
16 | src/bin/spy.c | ||
17 | src_bin_smman_CPPFLAGS = @BIN_CFLAGS@ | ||
18 | src_bin_smman_LDFLAGS = @BIN_LIBS@ | ||