mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-05-06 07:23:04 +02:00
fix up exmaples
This commit is contained in:
parent
574db0ab55
commit
028a5590ae
10 changed files with 13799 additions and 280 deletions
17
websocks-demo/Makefile
Normal file
17
websocks-demo/Makefile
Normal file
|
@ -0,0 +1,17 @@
|
|||
WEBSOCKS_SRC = websocks.js
|
||||
BT_OUT = websocks-bt.js
|
||||
BT_SRC = bittorrent.js
|
||||
|
||||
IRC_OUT = websocks-irc.js
|
||||
IRC_SRC = irc-client.js
|
||||
|
||||
all: $(BT_OUT) $(IRC_OUT)
|
||||
|
||||
$(IRC_OUT):
|
||||
browserify $(WEBSOCKS_SRC) $(IRC_SRC) -o $(IRC_OUT)
|
||||
|
||||
$(BT_OUT):
|
||||
browserify $(WEBSOCKS_SRC) $(BT_SRC) -o $(BT_OUT)
|
||||
|
||||
clean:
|
||||
rm -f $(BT_OUT) $(IRC_OUT)
|
Loading…
Add table
Add a link
Reference in a new issue