From 745f61cf09aad34c6bda16a19f9523f7f8867364 Mon Sep 17 00:00:00 2001 From: Ben Chaney Date: Sun, 21 May 2017 01:24:11 -0400 Subject: [PATCH] Fix for Makefile Adds .o files to lib's requirements so that make will succeed with the -j flag set --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1075f09..d48cdc4 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ PYTHON_VERSION = 2.7 serpent : serpentc lib -lib: +lib: $(COMMON_OBJS) ar rvs libserpent.a $(COMMON_OBJS) g++ $(CXXFLAGS) -shared $(COMMON_OBJS) -o libserpent.so