From 1be8e16191de38a54d706ad5ff99f20576e6ee71 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 16 Feb 2014 18:47:33 +0100 Subject: beginning c binding MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 97133b3..6aacca1 100644 --- a/Makefile +++ b/Makefile @@ -2,23 +2,31 @@ PKGCONFIG = pkg-config OPTIMISE = -Og -g WARN = -Wall -Wextra -pedantic LIBS = xcb-randr -STD = c90 +STD = c99 -FLAGS = $$($(PKGCONFIG) --cflags --libs $(LIBS)) -std=$(STD) $(WARN) $(OPTIMISE) +FLAGS = $$($(PKGCONFIG) --cflags --libs $(LIBS)) -std=$(STD) $(WARN) $(OPTIMISE) -fPIC .PHONY: all all: bin/blueshift_randr -bin/blueshift_randr: obj/blueshift_randr.o +bin/blueshift_randr.so: obj/_blueshift_randr.o obj/blueshift_randr_c.o @mkdir -p bin - $(CC) $(FLAGS) -o $@ $^ + $(CC) $(FLAGS) -shared -o $@ $^ obj/%.o: src/%.c @mkdir -p obj $(CC) $(FLAGS) -c -o $@ $< +obj/%.o: obj/%.c + @mkdir -p obj + $(CC) $(FLAGS) -c -o $@ $< + +obj/_blueshift_randr.c: src/_blueshift_randr.pyx + cd src ; cython -3 $< + mv src/_blueshift_randr.c $@ + .PHONY: all clean: -- cgit v1.2.3-70-g09d2