mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-23 03:23:08 +00:00
11 lines
142 B
Makefile
11 lines
142 B
Makefile
all : master test
|
|
|
|
master : master.c main.c
|
|
gcc -g -Wall -o $@ $^ -lzmq
|
|
|
|
test : test.c
|
|
gcc -g -Wall -o $@ $^ -lzmq
|
|
|
|
clean :
|
|
rm master test
|