mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
BUILD: Show file sizes in verbose build
This commit is contained in:
parent
c271694143
commit
edb55a0982
6
Makefile
6
Makefile
@ -80,6 +80,12 @@ RM ?= rm -f
|
||||
RM_REC ?= $(RM) -r
|
||||
ZIP ?= zip -q
|
||||
|
||||
ifeq ($(VERBOSE_BUILD),1)
|
||||
LS := ls -l
|
||||
else
|
||||
LS := true
|
||||
endif
|
||||
|
||||
#######################################################################
|
||||
# Misc stuff - you should never have to edit this #
|
||||
#######################################################################
|
||||
|
@ -125,6 +125,7 @@ endif
|
||||
# The build rule for the ScummVM executable
|
||||
$(EXECUTABLE): $(DETECT_OBJS) $(OBJS)
|
||||
+$(QUIET_LINK)$(LD) $(LDFLAGS) $(PRE_OBJS_FLAGS) $+ $(POST_OBJS_FLAGS) $(LIBS) -o $@
|
||||
+$(QUIET)$(LS) $@
|
||||
|
||||
ifdef SPLIT_DWARF
|
||||
$(EXECUTABLE).dwp: $(EXECUTABLE)
|
||||
|
Loading…
x
Reference in New Issue
Block a user