/zmq/Makefile
https://code.google.com/p/gozmq/ · Makefile · 23 lines · 12 code · 5 blank · 6 comment · 0 complexity · 2005e0bc718ff1033ebbd6e3bd6870a7 MD5 · raw file
- include $(GOROOT)/src/Make.inc
- TARG=zmq
- CGOFILES=\
- zmq.go \
- ifeq ($(GOOS),windows)
- CGO_CFLAGS=-I.
- CGO_LDFLAGS=-L. -lzmq
- else
- CGO_CFLAGS= -I/usr/local/include
- CGO_LDFLAGS=-L/usr/local/lib -lzmq
- endif
- # set CGO_CFLAGS or CGO_LDFLAGS. For example, to use an
- # alternate installation of the library:
- # CGO_CFLAGS=-I/home/example/include
- # CGO_LDFLAGS+=-L/home/example/lib
- # Note the += on the second line.
- #CLEANFILES+=
- include $(GOROOT)/src/Make.pkg