You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
274 B
12 lines
274 B
ACLOCAL_AMFLAGS = -I m4
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
SERVER = server.c run.c close_conn.c poll.c \
|
|
handle_accept.c read.c write.c
|
|
|
|
AM_CFLAGS += -I../../include/
|
|
|
|
noinst_LTLIBRARIES = libserver.la
|
|
|
|
libserver_la_SOURCES = $(SERVER)
|
|
libserver_la_CFLAGS = $(AM_CFLAGS)
|