mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-23 00:01:21 -04:00

* Added Simple example - so others can understand how to interface with bitdht. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3724 b45a01b8-16f6-495d-af2f-9b41ad6348cc
16 lines
209 B
Makefile
16 lines
209 B
Makefile
|
|
CXXFLAGS = -Wall -g -I..
|
|
#CXXFLAGS += -arch i386 # OSX
|
|
|
|
LIBS = -L../lib -lbitdht
|
|
|
|
|
|
|
|
EXEC : bdexample
|
|
|
|
EGOBJ = bdhandler.o bdexample.o
|
|
|
|
bdexample: $(EGOBJ)
|
|
$(CXX) $(CXXFLAGS) -o bdexample $(EGOBJ) $(LIBS)
|
|
|
|
|