From 724602d585d8684267f6acc5e1e7ca137e5d7b32 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 2 Sep 2014 16:45:20 +0200 Subject: add makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a1d644f --- /dev/null +++ b/Makefile @@ -0,0 +1,88 @@ +# Copying and distribution of this file, with or without modification, +# are permitted in any medium without royalty provided the copyright +# notice and this notice are preserved. This file is offered as-is, +# without any warranty. + + +# The package path prefix, if you want to install to another root, set DESTDIR to that root +PREFIX ?= /usr +# The command path excluding prefix +BIN ?= /bin +# The resource path excluding prefix +DATA ?= /share +# The command path including prefix +BINDIR ?= $(PREFIX)$(BIN) +# The resource path including prefix +DATADIR ?= $(PREFIX)$(DATA) +# The generic documentation path including prefix +DOCDIR ?= $(DATADIR)/doc +# The info manual documentation path including prefix +INFODIR ?= $(DATADIR)/info +# The license base path including prefix +LICENSEDIR ?= $(DATADIR)/licenses + +# The target and host platform +PLATFORM = posix + + +# The installed pkg-config command +PKGCONFIG ?= pkg-config +# The installed cython command +CYTHON ?= cython + + +# Libraries to link with using pkg-config +LIBS = python3 + +# The C standard for C code compilation +STD = c99 +# Optimisation settings for C code compilation +OPTIMISE ?= -Og -g + + + +# Flags to use when compiling +CC_FLAGS = $$($(PKGCONFIG) --cflags $(LIBS)) -std=$(STD) \ + $(OPTIMISE) -fPIC $(CFLAGS) $(CPPFLAGS) + +# Flags to use when linking +LD_FLAGS = $$($(PKGCONFIG) --libs $(LIBS)) -lgamma -std=$(STD) \ + $(OPTIMISE) -shared $(LDFLAGS) + + +.PHONY: all +all: $(foreach M,error facade method,bin/libgamma_native_$(M).so) + +bin/%.so: obj/%.o + @mkdir -p bin + $(CC) $(LD_FLAGS) -o $@ $^ + +obj/%.o: obj/%.c src/*.h + $(CC) $(CC_FLAGS) -iquote"src" -c -o $@ $< + +obj/%.c: obj/%.pyx + $(CYTHON) -3 -v $< + +obj/libgamma_native_facade.pyx: src/libgamma_native_facade.pyx + @mkdir -p obj + cp $< $@ + +obj/libgamma_native_method.pyx: src/libgamma_native_method.pyx + @mkdir -p obj + cp $< $@ + +ifeq ($(PLATFORM),windows) +obj/libgamma_native_error.pyx: src/libgamma_native_error.w32.pyx + @mkdir -p obj + cp $< $@ +else +obj/libgamma_native_error.pyx: src/libgamma_native_error.pyx + @mkdir -p obj + cp $< $@ +endif + + +.PHONY: clean +clean: + -rm -r obj bin + -- cgit v1.2.3-70-g09d2