The Poor Man's (or Woman's) Intrusion Detection System
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- iptraffic: iptraffic.cpp strutil.o data.o config.o cli.o
- g++ -o $@ $@.cpp strutil.o data.o config.o cli.o
-
- config.o: config.cpp config.h strutil.o data.o
- g++ -c -o $@ config.cpp
-
- data.o: data.cpp data.h strutil.o
- g++ -c -o $@ data.cpp
-
- cli.o: cli.cpp cli.h
- g++ -c -o $@ cli.cpp
-
- strutil.o: strutil.cpp strutil.h
- g++ -c -o $@ strutil.cpp
-
-
-
- .PHONY: run
- run: iptraffic
- ./iptraffic
-
-
-
- .PHONY: clean distclean
- clean:
- rm *.o || true
- distclean: clean
- rm iptraffic || true
|