Adding temporary hack to fix tinderbox objdir build problem introduced by placing obj files in the srcdir. (This occurs if you prefix your srcfiles by $(srcdir).) r=bryner

git-svn-id: svn://10.0.0.236/trunk@61758 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cls%seawood.org 2000-02-27 08:39:16 +00:00
parent 72e83af293
commit 8cb22e68a4
2 changed files with 8 additions and 1 deletions

View File

@ -31,4 +31,7 @@ EXTRA_DSO_LDOPTS += \
include $(topsrcdir)/config/rules.mk
# Hack to remove old objects stuck in the srcdir
export::
$(RM) -f $(addprefix $(srcdir)/, $(CPPSRCS:.cpp=.$(OBJ_SUFFIX)))

View File

@ -9,7 +9,7 @@ MODULE = timebombgen
SIMPLE_PROGRAMS = timebombgen
CPPSRCS = \
$(srcdir)/timebombgen.cpp \
timebombgen.cpp \
$(NULL)
LIBS = \
@ -23,3 +23,7 @@ EXTRA_DSO_LDOPTS += \
include $(topsrcdir)/config/rules.mk
# Hack to remove object files placed in the srcdir
export::
$(RM) -f $(addprefix $(srcdir)/, $(CPPSRCS:.cpp=.$(OBJ_SUFFIX)))