diff options
Diffstat (limited to 'projects')
-rw-r--r-- | projects/Makefile | 2 | ||||
-rw-r--r-- | projects/Stacker/lib/compiler/Makefile | 2 | ||||
-rw-r--r-- | projects/sample/tools/sample/Makefile | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/projects/Makefile b/projects/Makefile index 1e89f6d91b..ddb9323ba5 100644 --- a/projects/Makefile +++ b/projects/Makefile @@ -10,7 +10,7 @@ LEVEL=.. include $(LEVEL)/Makefile.config -DIRS:= $(filter-out llvm-test,$(patsubst $(SourceDir)/%/Makefile,%,$(wildcard $(SourceDir)/*/Makefile))) +DIRS:= $(filter-out llvm-test,$(patsubst $(BUILD_SRC_DIR)/%/Makefile,%,$(wildcard $(BUILD_SRC_DIR)/*/Makefile))) # Sparc cannot link shared libraries (libtool problem?) which Stacker uses ifeq ($(ARCH), Sparc) diff --git a/projects/Stacker/lib/compiler/Makefile b/projects/Stacker/lib/compiler/Makefile index 67c9e13ff2..1b767058a0 100644 --- a/projects/Stacker/lib/compiler/Makefile +++ b/projects/Stacker/lib/compiler/Makefile @@ -18,3 +18,5 @@ include $(LEVEL)/Makefile.common ifdef PARSE_DEBUG INCLUDES += -DPARSE_DEBUG endif + +$(OBJDIR)/Lexer.o : StackerParser.h diff --git a/projects/sample/tools/sample/Makefile b/projects/sample/tools/sample/Makefile index 17ea11ac79..1127f75575 100644 --- a/projects/sample/tools/sample/Makefile +++ b/projects/sample/tools/sample/Makefile @@ -14,7 +14,7 @@ TOOLNAME=sample # List libraries that we'll need # We use LIBS because sample is a dynamic library. # -LIBS+=-lsample +USEDLIBS = sample # # Include Makefile.common so we know what to do. |