diff options
author | Vasant Hegde <hegdevasant@linux.vnet.ibm.com> | 2016-02-23 20:37:25 +0530 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-02-24 14:26:43 +1100 |
commit | 7edd87afae3627de3012d902bce0f5e15251422c (patch) | |
tree | ba8fe80f5e319fff3bbc45b282cb7ebbf4a7177a /external/opal-prd | |
parent | c5ef509319bba17d37ba2bda1921dd53db858cd5 (diff) | |
download | skiboot-7edd87afae3627de3012d902bce0f5e15251422c.zip skiboot-7edd87afae3627de3012d902bce0f5e15251422c.tar.gz skiboot-7edd87afae3627de3012d902bce0f5e15251422c.tar.bz2 |
external/opal-prd: Make compilation prerequisites as order-only prerequisites
Makefile creates symbolic link to libflash, ccan, etc. Presently we added them
as normal prerequisites. In some cases (like we compile skiboot after compiling
opal-prd) it will result in recompiling source again during make install. Hence
make it as order-only prerequisites.
Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'external/opal-prd')
-rw-r--r-- | external/opal-prd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/opal-prd/Makefile b/external/opal-prd/Makefile index 98c7b48..3f34371 100644 --- a/external/opal-prd/Makefile +++ b/external/opal-prd/Makefile @@ -52,7 +52,7 @@ asm/opal-prd.h: $(Q_LN)ln -sfr $(KERNEL_DIR)/arch/powerpc/include/uapi/asm/opal-prd.h \ asm/opal-prd.h -$(OBJS): $(LINKS) +$(OBJS): | $(LINKS) %.o: %.c $(Q_CC)$(COMPILE.c) $< -o $@ |