From 0ce2323d8c68eb59e02aa46f920b5097886614f3 Mon Sep 17 00:00:00 2001 From: "Matwey V. Kornilov" Date: Tue, 17 Jun 2014 21:41:27 +0400 Subject: Fix a typo in clean section of otp_mibs makefile There is no such variable $(TARGETS_FILES) (with S) --- lib/otp_mibs/src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/otp_mibs/src/Makefile b/lib/otp_mibs/src/Makefile index 4f03d0228a..6096240bbd 100644 --- a/lib/otp_mibs/src/Makefile +++ b/lib/otp_mibs/src/Makefile @@ -72,7 +72,7 @@ ERL_COMPILE_FLAGS += -I$(INCLUDE) +warn_obsolete_guard debug opt: $(TARGETS) clean: - rm -f $(TARGETS_FILES) + rm -f $(TARGET_FILES) rm -f $(APP_TARGET) rm -f $(APPUP_TARGET) rm -f core -- cgit v1.2.3 From 58bf8106866b6f8845f925a96c57c66c18700cca Mon Sep 17 00:00:00 2001 From: "Matwey V. Kornilov" Date: Tue, 17 Jun 2014 21:44:01 +0400 Subject: Cleanup behaviour modules in ssh Behaviour modules were not cleanuped. --- lib/ssh/src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/ssh/src/Makefile b/lib/ssh/src/Makefile index 2ef2859fd7..53c755d3cb 100644 --- a/lib/ssh/src/Makefile +++ b/lib/ssh/src/Makefile @@ -115,7 +115,7 @@ $(TARGET_FILES): $(BEHAVIOUR_TARGET_FILES) debug opt: $(TARGET_FILES) $(APP_TARGET) $(APPUP_TARGET) clean: - rm -f $(TARGET_FILES) $(APP_TARGET) $(APPUP_TARGET) + rm -f $(TARGET_FILES) $(APP_TARGET) $(APPUP_TARGET) $(BEHAVIOUR_TARGET_FILES) rm -f errs core *~ $(APP_TARGET): $(APP_SRC) ../vsn.mk -- cgit v1.2.3 From e673ad2e7220e5a162cbbdfdca9135c14080794e Mon Sep 17 00:00:00 2001 From: "Matwey V. Kornilov" Date: Tue, 17 Jun 2014 21:45:52 +0400 Subject: Cleanup behaviour modules in ssl Behaviour modules were not cleanuped. --- lib/ssl/src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/ssl/src/Makefile b/lib/ssl/src/Makefile index 7c4c8ec2cc..0c00a650b9 100644 --- a/lib/ssl/src/Makefile +++ b/lib/ssl/src/Makefile @@ -118,7 +118,7 @@ $(TARGET_FILES): $(BEHAVIOUR_TARGET_FILES) debug opt: $(TARGET_FILES) $(APP_TARGET) $(APPUP_TARGET) clean: - rm -f $(TARGET_FILES) $(APP_TARGET) $(APPUP_TARGET) + rm -f $(TARGET_FILES) $(APP_TARGET) $(APPUP_TARGET) $(BEHAVIOUR_TARGET_FILES) rm -f errs core *~ $(APP_TARGET): $(APP_SRC) ../vsn.mk -- cgit v1.2.3 From 61c9499fbe7eeb6165febd100280d0e089904280 Mon Sep 17 00:00:00 2001 From: "Matwey V. Kornilov" Date: Tue, 17 Jun 2014 21:48:08 +0400 Subject: Cleanup parse_transform modules in eunit Parse_transform modules were not cleanuped. --- lib/eunit/src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/eunit/src/Makefile b/lib/eunit/src/Makefile index e6dab67363..9e4bcaf3de 100644 --- a/lib/eunit/src/Makefile +++ b/lib/eunit/src/Makefile @@ -78,7 +78,7 @@ all: $(OBJECTS) clean: - rm -f $(OBJECTS) + rm -f $(OBJECTS) $(PARSE_TRANSFORM_BIN) rm -f core *~ distclean: clean -- cgit v1.2.3