mirror of
https://github.com/brmlab/brmlife.git
synced 2025-08-02 09:53:38 +02:00
Connection communication in separate thread
This commit is contained in:
parent
ec3897b29b
commit
92940b6054
4 changed files with 92 additions and 7 deletions
5
Makefile
5
Makefile
|
@ -1,9 +1,10 @@
|
|||
CFLAGS=-Wall -g
|
||||
CFLAGS=-Wall -g -pthread
|
||||
LDFLAGS=-pthread
|
||||
|
||||
OBJS=main.o map.o agent.o connection.o
|
||||
|
||||
brmlife: $(OBJS)
|
||||
$(CXX) -o $@ $^
|
||||
$(CXX) $(LDFLAGS) -o $@ $^
|
||||
|
||||
|
||||
clean:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue