Skip to content

Commit 7f74e1f

Browse files
committed
Nuevo Repo
0 parents  commit 7f74e1f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+25610
-0
lines changed

Makefile.am

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
AUTOMAKE_OPTIONS = foreign
2+
SUBDIRS = data players.data bt-mbet-lib bt-util-lib bt bt-ls
3+
4+
doxygen: $(betenisd_HEADERS)
5+
@make -C latex

betenisd.ico

13.7 KB
Binary file not shown.

betenisd.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
APPICON ICON betenisd.ico

bt-ls/Makefile.am

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
bin_PROGRAMS = bt-ls
2+
3+
bt_ls_SOURCES = src/bt-ls.c
4+
bt_ls_LDADD = -lm \
5+
$(top_builddir)/bt-mbet-lib/libbt-mbet.a \
6+
$(top_builddir)/bt-util-lib/libbt-util.a \
7+
$(LIBXML_2_LIBS) \
8+
$(HTTP_IO_LIBS) \
9+
$(MYSQL_LIBS) \
10+
$(MONGOC_LIBS) \
11+
$(JSON_C_LIBS)
12+
13+
bt_ls_CFLAGS = \
14+
-I$(top_srcdir)/bt-mbet-lib/include \
15+
-I$(top_srcdir)/bt/include \
16+
-I$(top_srcdir)/bt-util-lib/include \
17+
-I$(srcdir)/include \
18+
$(MYSQL_CFLAGS) \
19+
$(MONGOC_CFLAGS) \
20+
$(JSON_C_CFLAGS)
21+
22+
clang-analyze: $(bt_ls_SOURCES:.c=.clang-analyze)
23+
@true
24+
25+
cppcheck: $(bt_ls_SOURCES:.c=.cppcheck)
26+
@true
27+
28+
.c.cppcheck:
29+
@cppcheck $(bt_ls_CFLAGS) $(CPPCHECK_OPTIONS) $(CPPCHECK_LIBRARIES) $<
30+
31+
.c.clang-analyze:
32+
@echo Analyzing $<
33+
@clang --analyze $(bt_ls_CFLAGS) $<

0 commit comments

Comments
 (0)