Ok, I don't know where else to ask this, but I just started using linux (Ubuntu) and everything has been smooth so far. Now, I want to install MoBlock (I'm trying to learn how to install things). its location is "/home/user/Documents/downloads/MoBlock" and it has a readme, changelog, copying, makefile, MoBlock.c, MoBlock-ipq.sh, MoBlock-nfq.sh, rbt.c.
This is what the makefile says
# To use the old-soon-to-be-deprecated libipq interface
# uncomment the following line and comment the NFQUEUE one,
# then comment the gcc line with netfilter_queue and
# uncomment the following one.
#QUEUE_LIB=LIBIPQ
QUEUE_LIB=NFQUEUE
CFLAGS=-Wall -O2 -march=i586 -mtune=i686 -fomit-frame-pointer -ffast-math \
-D_GNU_SOURCE -D$(QUEUE_LIB) -L/usr/include/libipq
CC=gcc
all: moblock
moblock: MoBlock.o rbt.o
gcc -o $@ MoBlock.o rbt.o -lnetfilter_queue -lnfnetlink
#gcc -o $@ MoBlock.o rbt.o -lipq
strip $@
moblock-static: MoBlock.o rbt.o
gcc -static -o $@ MoBlock.o rbt.o -lnetfilter_queue -lnfnetlink
#gcc -static -o $@ MoBlock.o rbt.o -lipq
strip $@
clean:
rm -f *.o *~ *# moblock
install:
install -m 755 moblock $(DESTDIR)/usr/bin
.PHONY: clean
I follow the how to guide
http://www.linuxforums.org/forum/lin...are-linux.html
I get to the "more INSTALL" step and it fails. How would I install this? I've tried for awhile, but I can't figure it out. Tell me if you need any more information. Thanks.