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

This commit is contained in:
cls%seawood.org 2000-02-27 08:39:16 +00:00
Родитель 90fd177cac
Коммит 35dfa6bbb3
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -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)))

Просмотреть файл

@ -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)))