Files
skynet/master/Makefile
2012-08-08 13:30:59 +08:00

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