forked from jshiffer/go-xmpp
fix query roster
process subscription="remove" roster improve roster process
This commit is contained in:
31
GNUmakefile
Normal file
31
GNUmakefile
Normal file
@@ -0,0 +1,31 @@
|
||||
#
|
||||
# Makefile for hookAPI
|
||||
#
|
||||
# switches:
|
||||
# define the ones you want in the CFLAGS definition...
|
||||
#
|
||||
# TRACE - turn on tracing/debugging code
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
|
||||
# Version for distribution
|
||||
VER=1_0r1
|
||||
|
||||
MAKEFILE=GNUmakefile
|
||||
|
||||
# We Use Compact Memory Model
|
||||
|
||||
all: bin/example
|
||||
@[ -d bin ] || exit
|
||||
|
||||
bin/example: _example/example.go xmpp.go
|
||||
@[ -d bin ] || mkdir bin
|
||||
go build -o $@ _example/example.go
|
||||
@strip $@ || echo "example OK"
|
||||
|
||||
clean:
|
||||
|
||||
distclean: clean
|
||||
@rm -rf bin
|
||||
Reference in New Issue
Block a user