Use libinstr.$(ARCH).a instead of libinstr64.a

Also, $(RM) needs -f flag.

llvm-svn: 7128
This commit is contained in:
Vikram S. Adve 2003-07-08 18:39:51 +00:00
parent 6c9dc89ba5
commit eb44eb1e08
1 changed files with 2 additions and 2 deletions

View File

@ -75,14 +75,14 @@ else
endif endif
endif endif
ifeq ($(DOTRACING), yes) ifeq ($(DOTRACING), yes)
TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr64 TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr.$(ARCH)
endif endif
LLCLIBS := $(LLCLIBS) -lm LLCLIBS := $(LLCLIBS) -lm
clean:: clean::
$(RM) a.out core $(RM) -f a.out core
$(RM) -rf Output/ $(RM) -rf Output/
# Compile from X.c to Output/X.ll # Compile from X.c to Output/X.ll