Some systems do not recognise wildcards in the rm command

This commit is contained in:
nsubiron 2017-06-27 12:55:50 +02:00
parent aeccb7c130
commit eca43e2aff
1 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,8 @@ $(PROTOBUF_SRC_DIR)/%.pb.cc: $(PROTOBUF_SRC_DIR)/%.proto
protoc -I=$(PROTOBUF_SRC_DIR) --cpp_out=$(PROTOBUF_SRC_DIR) $<
clean:
rm -f $(PROTOBUF_SRC_DIR)/carla_protocol.pb.*
rm -f $(PROTOBUF_SRC_DIR)/carla_protocol.pb.h
rm -f $(PROTOBUF_SRC_DIR)/carla_protocol.pb.cc
rm -Rf build CMakeFiles
clean-all: clean