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.
10 lines
320 B
10 lines
320 B
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
CCLASS = cclass.c
|
|
SOCKET = socket.c socket/accept.c socket/connect.c socket/listen.c
|
|
SERVER = server.c server/run.c server/close_conn.c
|
|
|
|
bin_PROGRAMS = testserver
|
|
|
|
testserver_SOURCES = testserver.c $(CCLASS) $(SOCKET) $(SERVER) signalHandling.c logger.c
|
|
testserver_CFLAGS = -Wall -I ../include
|