summaryrefslogtreecommitdiffstats
path: root/pk/ppe/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'pk/ppe/Makefile')
-rw-r--r--pk/ppe/Makefile50
1 files changed, 0 insertions, 50 deletions
diff --git a/pk/ppe/Makefile b/pk/ppe/Makefile
deleted file mode 100644
index 833dbfdf..00000000
--- a/pk/ppe/Makefile
+++ /dev/null
@@ -1,50 +0,0 @@
-# This Makefile compiles all of the PK code required for the PPE port
-# of PK. See the "pk.mk" file in this directory.
-
-#all generated files from this makefile will end up in obj/$(IMAGE_NAME)/pk
-export SUB_OBJDIR = /pk
-
-include img_defs.mk
-include pkppefiles.mk
-
-ifeq "$(PK_TIMER_SUPPORT)" "1"
-PPE_OBJECTS += ${PPE-TIMER-C-SOURCES:.c=.o} ${PPE-TIMER-S-SOURCES:.S=.o}
-endif
-
-ifeq "$(PK_THREAD_SUPPORT)" "1"
-PPE_OBJECTS += ${PPE-THREAD-C-SOURCES:.c=.o} ${PPE-THREAD-S-SOURCES:.S=.o}
-endif
-
-ifeq "$(PPE_ASYNC_SUPPORT)" "1"
-PPE_OBJECTS += ${PPE-ASYNC-C-SOURCES:.c=.o} ${PPE-ASYNC-S-SOURCES:.S=.o}
-endif
-
-OBJS := $(addprefix $(OBJDIR)/, $(PPE_OBJECTS))
-
-libpk.a: kernel ppe42 trace ppe
- $(AR) crs $(OBJDIR)/libpk.a $(OBJDIR)/*.o
-
-.PHONY: clean ppe kernel ppe42 trace
-ppe: $(OBJS)
-
-trace:
- $(MAKE) -I $(IMAGE_SRCDIR) -C ../trace
-
-kernel:
- $(MAKE) -I $(IMAGE_SRCDIR) -C ../kernel
-
-ppe42:
- $(MAKE) -I $(IMAGE_SRCDIR) -C ../ppe42
-
-
-$(OBJS) $(OBJS:.o=.d): | $(OBJDIR)
-
-$(OBJDIR):
- mkdir -p $(OBJDIR)
-
-clean:
- rm -fr $(OBJDIR)
-
-ifneq ($(MAKECMDGOALS),clean)
-include $(OBJS:.o=.d)
-endif
OpenPOWER on IntegriCloud