diff options
| -rw-r--r-- | deps/rabbit/test/unit_amqp091_content_framing_SUITE.erl | 3 | ||||
| -rw-r--r-- | deps/rabbit_common/development.post.mk | 2 | ||||
| -rw-r--r-- | deps/rabbit_common/development.pre.mk | 14 |
3 files changed, 10 insertions, 9 deletions
diff --git a/deps/rabbit/test/unit_amqp091_content_framing_SUITE.erl b/deps/rabbit/test/unit_amqp091_content_framing_SUITE.erl index 61e004f10d..d4fc37457b 100644 --- a/deps/rabbit/test/unit_amqp091_content_framing_SUITE.erl +++ b/deps/rabbit/test/unit_amqp091_content_framing_SUITE.erl @@ -172,8 +172,7 @@ content_transcoding(_Config) -> sequence_with_content([ClearEncoded, Op]), sequence_with_content([ClearDecoded, Op]) end || Op <- [ClearDecoded, ClearEncoded, EnsureDecoded, - EnsureEncoded(rabbit_framing_amqp_0_9_1), - EnsureEncoded(rabbit_framing_amqp_0_8)]], + EnsureEncoded(rabbit_framing_amqp_0_9_1)]], passed. sequence_with_content(Sequence) -> diff --git a/deps/rabbit_common/development.post.mk b/deps/rabbit_common/development.post.mk index 19f87f7e2e..576604c621 100644 --- a/deps/rabbit_common/development.post.mk +++ b/deps/rabbit_common/development.post.mk @@ -20,5 +20,3 @@ src/rabbit_framing_amqp_0_9_1.erl:: $(CODEGEN) $(CODEGEN_AMQP) \ $(AMQP_SPEC_JSON_FILES_0_9_1) $(gen_verbose) env PYTHONPATH=$(CODEGEN_DIR) \ $(PYTHON) $(CODEGEN) body $(AMQP_SPEC_JSON_FILES_0_9_1) $@ - -clean:: diff --git a/deps/rabbit_common/development.pre.mk b/deps/rabbit_common/development.pre.mk index 0747d81f5a..d282b70d97 100644 --- a/deps/rabbit_common/development.pre.mk +++ b/deps/rabbit_common/development.pre.mk @@ -6,11 +6,15 @@ BUILD_DEPS = rabbitmq_codegen TEST_DEPS = proper -EXTRA_SOURCES += include/rabbit_framing.hrl \ - src/rabbit_framing_amqp_0_9_1.erl +CODEGEN_SOURCES += include/rabbit_framing.hrl \ + src/rabbit_framing_amqp_0_9_1.erl codegen-clean: - $(gen_verbose) rm -f $(EXTRA_SOURCES) + $(gen_verbose) rm -f $(CODEGEN_SOURCES) -# .DEFAULT_GOAL = all -codegen :: codegen-clean $(EXTRA_SOURCES) +codegen: codegen-clean + $(CODEGEN_SOURCES) + +.PHONY: codegen codegen-clean + +$(PROJECT).d:: $(EXTRA_SOURCES) |
