diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..81c9d98 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +CC = gcc +CFLAGS = -Wall -D_GNU_SOURCE -g -fPIC -Werror +LDFLAGS = -lm -lgsl -lgslcblas + +libextentsampling.so: extent-sampling.o nd-random.o gaussian-nd-random.o oracles.o utils.o + $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ + +depends: $(wildcard *.c) + $(CC) $(CFLAGS) -MM $^ > depends + +include depends + +.PHONY: clean +clean: + rm -vf *.o *.so depends |