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.

Makefile 177 B

12345678
  1. data: data.cpp ../data.o testit.o
  2. g++ -o $@ $@.cpp ../data.o testit.o
  3. ../data.o: ../data.cpp ../data.h
  4. cd .. && make data.o
  5. testit.o: testit.cpp testit.h
  6. g++ -c testit.cpp