diff --git a/src/Makefile b/src/Makefile index 7be3922..823ac53 100644 --- a/src/Makefile +++ b/src/Makefile @@ -20,7 +20,7 @@ #=----------------------------------------------------------------------------=# .DEFAULT_GOAL:= all -.PHONY: all dynlibs clean +.PHONY: all clean .PRECIOUS: %.c CCOPTS=-pthread -fPIC -fwrapv -Wall -fno-strict-aliasing @@ -40,8 +40,6 @@ $(BINDIR)/%.so: %.c @echo "Cythonizing $< to $@" @cython3 -3 $< -o $@ -dynlibs: $(DYNLIBS) - # ---- Main recipe ----------------------------------------------------------- # $(BINDIR)/gem-graph-server: main.c @echo "Building program to $@" @@ -57,4 +55,4 @@ main.c: main.py clean: rm -rf *.c ../bin/* -all: dynlibs $(BINDIR)/gem-graph-server +all: $(DYNLIBS) $(BINDIR)/gem-graph-server