From f35f7659a0f078a0e1016ccb2e48a2a929e8708f Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Sat, 10 Apr 2021 23:23:41 +0200 Subject: [PATCH] Cleaned Makefile --- src/Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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