7 lines
248 B
Makefile
7 lines
248 B
Makefile
server-tool-linux:multi_thread_server.o
|
|
$(CC) -o server-tool-linux multi_thread_server.o -lpthread
|
|
multi_thread_server.o:multi_thread_server.c common.h
|
|
$(CC) ${CFLAGS} -c multi_thread_server.c
|
|
clean:
|
|
-rm server-tool-linux multi_thread_server.o
|