Browse Source

- the interp is an order-only prereq of lib-so-y
- hint vi on the filetype while at it

Bernhard Reutner-Fischer 17 years ago
parent
commit
a1dc829ec2
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Makerules

+ 2 - 1
Makerules

@@ -15,7 +15,7 @@ PHONY := FORCE
 ifeq ($(HAVE_SHARED),y)
 .LIBPATTERNS: "lib%.so"
 libs: $(lib-so-y) $(lib-a-y)
-$(lib-so-y): $(interp)
+$(lib-so-y): | $(interp)
 else
 .LIBPATTERNS: "lib%.a"
 ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y)
@@ -404,3 +404,4 @@ ifneq ($(strip $(.depends.dep)),)
 endif
 endif
 
+# vi: ft=make :