Introduction
Introduction Statistics Contact Development Disclaimer Help
Makefile - pubsubhubbubblub - pubsubhubbub client implementation
git clone git://git.codemadness.org/pubsubhubbubblub
Log
Files
Refs
README
LICENSE
---
Makefile (498B)
---
1 .POSIX:
2
3 build: clean
4 # compile
5 ${CC} -c sha1.c ${CFLAGS} ${CPPFLAGS}
6 ${CC} -c hmac_sha1.c ${CFLAGS} ${CPPFLAGS}
7 ${CC} -c strlcat.c xml.c ${CFLAGS} ${CPPFLAGS}
8 ${CC} -c pubsub_cgi.c ${CFLAGS} ${CPPFLAGS} -D_GNU_SOURCE
9 ${CC} -c pubsub_gethub.c ${CFLAGS} ${CPPFLAGS} -D_GNU_SOURCE
10 # static link CGI
11 ${CC} -o pubsub_cgi hmac_sha1.o sha1.o pubsub_cgi.o ${LDFLAGS} -…
12 # link
13 ${CC} -o pubsub_gethub strlcat.o xml.o pubsub_gethub.o ${LDFLAGS}
14
15 clean:
16 rm -f *.o pubsub_cgi pubsub_gethub
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.