Starting on push/pull example

This commit is contained in:
Dan Buch
2012-03-18 13:49:50 -04:00
parent fc056f0d8b
commit b612f4dfc6
3 changed files with 40 additions and 1 deletions

View File

@@ -1,13 +1,14 @@
CFLAGS += -I. -I/usr/local/include
LDFLAGS += -lstdc++ -lpthread -luuid -lrt
LIBZMQ := /usr/local/lib/libzmq.a
TARGETS := hwserver hwclient wuserver wuclient taskvent
%:%.c
$(CC) $(CFLAGS) -o $@ $^ $(LIBZMQ) $(LDFLAGS)
all: hwserver hwclient wuserver wuclient
all: $(TARGETS)
.PHONY: all