mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-05-03 01:10:17 +00:00
11 lines
358 B
Makefile
11 lines
358 B
Makefile
SRCHOME=../src
|
|
LIBNDPI=$(SRCHOME)/lib/libndpi.a
|
|
LIBS=$(LIBNDPI) @PCAP_LIB@ @ADDITIONAL_LIBS@ @LIBS@ @GPROF_LIBS@
|
|
|
|
all: hosts2domains print_rank
|
|
|
|
hosts2domains: hosts2domains.c Makefile
|
|
$(CC) -I$(SRCHOME)/include -g hosts2domains.c -o hosts2domains $(LIBS)
|
|
|
|
print_rank: print_rank.c Makefile
|
|
$(CC) -I$(SRCHOME)/include -g print_rank.c -o print_rank $(LIBS)
|