Skip to content

Commit 8e2dbdb

Browse files
committed
Fix tool name
1 parent 8e8b5c0 commit 8e2dbdb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
*.o
2-
make_spiffs
3-
make_spiffs.exe
2+
mkspiffs
3+
mkspiffs.exe

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ifeq ($(OS),Windows_NT)
66
DIST_SUFFIX := windows
77
ARCHIVE_CMD := 7z a
88
ARCHIVE_EXTENSION := zip
9-
TARGET := make_spiffs.exe
9+
TARGET := mkspiffs.exe
1010
else
1111
UNAME_S := $(shell uname -s)
1212
ifeq ($(UNAME_S),Linux)
@@ -25,7 +25,7 @@ else
2525
endif
2626
ARCHIVE_CMD := tar czf
2727
ARCHIVE_EXTENSION := tar.gz
28-
TARGET := make_spiffs
28+
TARGET := mkspiffs
2929
endif
3030

3131
VERSION ?= $(shell git describe --always)
@@ -44,7 +44,7 @@ CXXFLAGS += $(TARGET_CXXFLAGS)
4444

4545
CPPFLAGS += $(INCLUDES) -D$(TARGET_OS) -DVERSION=\"$(VERSION)\"
4646

47-
DIST_NAME := make_spiffs-$(VERSION)-$(DIST_SUFFIX)
47+
DIST_NAME := mkspiffs-$(VERSION)-$(DIST_SUFFIX)
4848
DIST_DIR := $(DIST_NAME)
4949
DIST_ARCHIVE := $(DIST_NAME).$(ARCHIVE_EXTENSION)
5050

@@ -65,6 +65,6 @@ $(DIST_DIR):
6565
@mkdir -p $@
6666

6767
clean:
68-
@rm *.o
69-
@rm spiffs/*.o
68+
@rm -f *.o
69+
@rm -f spiffs/*.o
7070
@rm -f $(TARGET)

0 commit comments

Comments
 (0)