CC=gcc CPPFLAGS= -g -I. LDFLAGS= -lpcap -lm all: perf perf: perf.c conn_table.c hash.c packet_handler.h transaction.h transaction.c thresholds.h ports.h pcap_packet_read.c packet_handler.c packet.c packet.h constants.h $(CC) $(CPPFLAGS) -o perf perf.c conn_table.c hash.c transaction.c pcap_packet_read.c packet_handler.c packet.c $(LDFLAGS) clean: rm -rf $(OBJECTS) perf *~ *.o