spectre/Makefile

11 lines
175 B
Makefile
Raw Normal View History

2016-05-06 17:53:19 +00:00
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)