Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.arlock
.depend
Make.dep
*.o
Expand All @@ -16,8 +15,8 @@ cscope.out
/external
/.context
/.config
/.depend
/*.lib
/*.lock
/romfs.img
/boot_romfsimg.h
/symtab_apps.c
Expand Down
2 changes: 1 addition & 1 deletion Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ endef
endif

define ARLOCK
$(Q) flock .arlock $(call ARCHIVE, $1, $(2))
$(Q) flock $1.lock $(call ARCHIVE, $1, $(2))
endef

# Tools
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ else
fi; \
)
endif
$(call DELFILE, .arlock)
$(call DELFILE, *.lock)
$(call DELFILE, .depend)
$(call DELFILE, $(SYMTABSRC))
$(call DELFILE, $(SYMTABOBJ))
Expand Down