box-o-sand/zeromq/Makefile

15 lines
272 B
Makefile
Raw Normal View History

CFLAGS += -I. -I/usr/local/include
LDFLAGS += -lstdc++ -lpthread -luuid -lrt
LIBZMQ := /usr/local/lib/libzmq.a
TARGETS := hwserver hwclient wuserver wuclient taskvent taskwork tasksink
%:%.c
$(CC) $(CFLAGS) -o $@ $^ $(LIBZMQ) $(LDFLAGS)
2012-03-16 13:43:49 +00:00
2012-03-18 17:49:50 +00:00
all: $(TARGETS)
2012-03-16 13:43:49 +00:00
.PHONY: all