# HG changeset patch # User Chris Cannam # Date 1407161760 -3600 # Node ID 3148edeb533689184340979ced7e9534321085fd # Parent 537205426492bd376033549ec185caa83324956f# Parent 4e19c60241cbb6594dcfb5b83de6f6fdd24405b7 Merge diff -r 4e19c60241cb -r 3148edeb5336 Makefile.inc --- a/Makefile.inc Mon Aug 04 09:22:05 2014 +0100 +++ b/Makefile.inc Mon Aug 04 15:16:00 2014 +0100 @@ -38,11 +38,16 @@ all: constant-q-cpp $(PLUGIN) +.PHONY: constant-q-cpp +constant-q-cpp: + $(MAKE) -C $@ -f Makefile$(MAKEFILE_EXT) libcq.a + $(PLUGIN): $(OBJECTS) $(LIBS) $(CXX) -o $@ $^ $(LIBS) $(PLUGIN_LDFLAGS) clean: rm -f $(OBJECTS) + $(MAKE) -C constant-q-cpp -f Makefile$(MAKEFILE_EXT) clean distclean: clean rm -f $(PLUGIN) diff -r 4e19c60241cb -r 3148edeb5336 Makefile.linux --- a/Makefile.linux Mon Aug 04 09:22:05 2014 +0100 +++ b/Makefile.linux Mon Aug 04 15:16:00 2014 +0100 @@ -10,9 +10,8 @@ PLUGIN_EXT := .so +MAKEFILE_EXT := .linux + include Makefile.inc -.PHONY: constant-q-cpp -constant-q-cpp: - $(MAKE) -C $@ -f Makefile.linux libcq.a