diff -Naur botnet-1.5.1/Makefile.am botnet-1.5.1-p/Makefile.am --- botnet-1.5.1/Makefile.am Wed Mar 29 18:38:46 2000 +++ botnet-1.5.1-p/Makefile.am Wed Aug 23 18:23:52 2000 @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -SUBDIRS = makelib example +SUBDIRS = makelib EXTRA_DIST = \ License.txt \ diff -Naur botnet-1.5.1/example/Makefile.new botnet-1.5.1-p/example/Makefile --- botnet-1.5.1/example/Makefile.new Thu Jan 1 01:00:00 1970 +++ botnet-1.5.1-p/example/Makefile.new Wed Aug 23 18:35:47 2000 @@ -0,0 +1,14 @@ +%.o: %.c + $(CC) $(CFLAGS) -c -o $@ $< + +#all: bot serv +all: bot + +bot: bot.o + $(CC) $(LDFLAGS) -lbotnet -o $@ $< + +serv: serv.o + $(CC) $(LDFLAGS) -lbotnet -o $@ $< + +clean: + rm -f *.o bot serv core diff -Naur botnet-1.5.1/example/bot.c botnet-1.5.1-p/example/bot.c --- botnet-1.5.1/example/bot.c Wed Aug 2 21:42:02 2000 +++ botnet-1.5.1-p/example/bot.c Wed Aug 23 18:28:31 2000 @@ -4,7 +4,7 @@ */ -#include "../makelib/botnet.h" +#include #include #include #ifdef __unix__ diff -Naur botnet-1.5.1/example/serv.c botnet-1.5.1-p/example/serv.c --- botnet-1.5.1/example/serv.c Wed Aug 2 21:48:45 2000 +++ botnet-1.5.1-p/example/serv.c Wed Aug 23 18:35:22 2000 @@ -6,7 +6,7 @@ /* DO NOT forget to define SERVER before any include of botnet if you want to use BotNet's server capabilities */ /* But we don't need it here, because makefile already defines it */ //#define SERVER -#include "../makelib/botnet.h" +#include #include #include #include