summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile11
-rw-r--r--src/build/Makefile3
2 files changed, 9 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index e4006cfb..7a634faf 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@
#
# IBM_PROLOG_END_TAG
BUILD_DIR = src/build
-.PHONY: install all clean tar
+.PHONY: install all clean tar install_DD1 install_DD2 DD1 DD2
del_objects:
@rm -rf obj/sbefw
@@ -34,16 +34,19 @@ del_objects:
install: all tar
+install_DD1: DD1 tar
+install_DD2: DD2 tar
+
tar:
$(MAKE) -C $(BUILD_DIR) tar
-DD1_build:
+DD1:
$(MAKE) -C $(BUILD_DIR) all ddlevel=DD1
-DD2_build:
+DD2:
$(MAKE) -C $(BUILD_DIR) all ddlevel=DD2
-all: DD1_build del_objects DD2_build
+all: DD1 del_objects DD2
clean:
$(MAKE) -C $(BUILD_DIR) clean
diff --git a/src/build/Makefile b/src/build/Makefile
index d6576ee9..b6bcbea4 100644
--- a/src/build/Makefile
+++ b/src/build/Makefile
@@ -99,7 +99,7 @@ endif
SIMICS_PPE_TAR_FILES += $(IMG_DIR)/sbe_*.syms
SIMICS_PPE_TAR_FILES += $(TEST_SRCDIR)/*.xml
SIMICS_PPE_TAR_FILES += $(TEST_SRCDIR)/*.py
-SIMICS_PPE_TAR_FILES += $(IMG_DIR)/$(SBE_STRINGFILE_NAME)
+SIMICS_PPE_TAR_FILES += $(IMG_DIR)/sbeStringFile*
SIMICS_PPE_TAR_FILES += $(PPETRACEPP_BIN_DIR)/ppe2fsp
SIMICS_BB_TAR_FILES += $(SIMICSTOOLS_SRCDIR)/*
SIMICS_BB_TAR_FILES += $(DEBUGTOOLS_SRCDIR)/simics-debug-framework.py
@@ -179,6 +179,7 @@ install: all tar
tar:
# TODO:Remove this line once Simics supports DD specific files
@cp $(IMG_DIR)/sbe_seeprom_DD1.bin $(IMG_DIR)/sbe_seeprom.bin | true
+ @cp $(IMG_DIR)/sbeStringFile_DD1 $(IMG_DIR)/sbeStringFile | true
@echo "Installing simics.tar"
@rm -rf $(OBJDIR)/simics-tar-dir
@mkdir $(OBJDIR)/simics-tar-dir
OpenPOWER on IntegriCloud