Spectre traffic generator v.0.9

This commit is contained in:
Alex Vanin 2016-05-06 20:53:19 +03:00
commit 8959cbc0d5
8 changed files with 849 additions and 0 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
CC=gcc
IDIR=./headers
LIBS=-lgsl -lgslcblas -lm
LFLAGS=$(LIBS) -I$(IDIR)
CFLAGS=-Wall -static
all: spectre
spectre: main.c
$(CC) $(CFLAGS) *.c -o ./build/main $(LFLAGS)