From 1c9128be78a68805ab0d80631c1984fd4291d894 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Wed, 3 Feb 2021 13:02:23 +0530 Subject: Initial commit --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3