| 1 |
bin_PROGRAMS = bbsd |
bin_PROGRAMS = bbsd test_trie_dict |
| 2 |
EXTRA_PROGRAMS = |
EXTRA_PROGRAMS = |
| 3 |
|
|
| 4 |
bbsd_SOURCES = bbs.c bbs_cmd.c bbs_main.c common.c database.c fork.c init.c \ |
bbsd_SOURCES = bbs.c bbs_cmd.c bbs_main.c common.c database.c fork.c init.c \ |
| 5 |
io.c log.c login.c menu.c main.c menu_proc.c netio.c net_server.c \ |
io.c log.c login.c menu.c main.c menu_proc.c net_server.c \ |
| 6 |
passwd.c regex.c register.c screen.c tcplib.c user_priv.c \ |
register.c screen.c str_process.c trie_dict.c user_priv.c |
|
welcome.c \ |
|
|
bbs.h bbs_cmd.h common.h database.h io.h menu.h menu_proc.h tcplib.h |
|
| 7 |
|
|
| 8 |
bbsd_LDFLAGS=-export-dynamic |
bbsd_LDFLAGS=-export-dynamic |
| 9 |
|
|
| 10 |
|
test_trie_dict_SOURCES = trie_dict.c test_trie_dict.c |
| 11 |
|
|
| 12 |
lib_LTLIBRARIES = libbbs.la |
lib_LTLIBRARIES = libbbs.la |
| 13 |
|
|
| 14 |
libbbs_la_SOURCES = bbs_net.c bbs.h common.h io.h menu.h tcplib.h |
libbbs_la_SOURCES = bbs_net.c |
| 15 |
|
|
| 16 |
INCLUDES = -I../include -I/usr/include/mysql |
AM_CFLAGS = -Wall -Werror -Wno-unused-parameter -Wformat -Wconversion -Wdeprecated -finline-functions |
| 17 |
LIBS = -L../lib -L/usr/lib/mysql -L/usr/lib64/mysql -lmysqlclient -lz -ldl |
AM_CPPFLAGS = -I../include -I/usr/include/mysql |
| 18 |
|
LIBS = -L/usr/lib/mysql -L/usr/lib64/mysql -lmysqlclient -lz -ldl -lsystemd |
| 19 |
|
|
| 20 |
libdir=${prefix}/lib |
libdir = ${prefix}/lib |
| 21 |
|
|
| 22 |
CLEANFILES=@EXTRA_CLEAN@ |
CLEANFILES = @EXTRA_CLEAN@ |