Browse Source

Makefile: improve DBG option for asm

This improves the cleanup, dependency generation and DBG command issuing.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Christophe Gisquet Michael Niedermayer 10 years ago
parent
commit
3fdcb8ccdc
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      common.mak

+ 5
- 5
common.mak View File

@@ -7,10 +7,10 @@ all: all-yes


DEFAULT_YASMD=.dbg DEFAULT_YASMD=.dbg


ifndef DBG
YASMD=
else
ifeq (1, DBG)
YASMD=$(DEFAULT_YASMD) YASMD=$(DEFAULT_YASMD)
else
YASMD=
endif endif


ifndef SUBDIR ifndef SUBDIR
@@ -152,11 +152,11 @@ LIBSUFFIXES = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a


define RULES define RULES
clean:: clean::
$(RM) $(OBJS) $(OBJS:.o=.d)
$(RM) $(OBJS) $(OBJS:.o=.d) $(OBJS:.o=$(DEFAULT_YASMD).d)
$(RM) $(HOSTPROGS) $(RM) $(HOSTPROGS)
$(RM) $(TOOLS) $(RM) $(TOOLS)
endef endef


$(eval $(RULES)) $(eval $(RULES))


-include $(wildcard $(OBJS:.o=.d) $(HOSTOBJS:.o=.d) $(TESTOBJS:.o=.d) $(HOBJS:.o=.d) $(SLIBOBJS:.o=.d))
-include $(wildcard $(OBJS:.o=.d) $(HOSTOBJS:.o=.d) $(TESTOBJS:.o=.d) $(HOBJS:.o=.d) $(SLIBOBJS:.o=.d)) $(OBJS:.o=$(DEFAULT_YASMD).d)

Loading…
Cancel
Save