diff options
Diffstat (limited to 'ldso/Makefile')
-rw-r--r-- | ldso/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ldso/Makefile b/ldso/Makefile index 44a4456ca..d4e16ec91 100644 --- a/ldso/Makefile +++ b/ldso/Makefile @@ -44,10 +44,10 @@ utils: $(MAKE) -C util; headers: - ln -fs $(TOPDIR)../include/elf.h include/ - ln -fs ../ldso/$(TARGET_ARCH)/boot1_arch.h include/ - ln -fs ../ldso/$(TARGET_ARCH)/ld_syscalls.h include/ - ln -fs ../ldso/$(TARGET_ARCH)/ld_sysdep.h include/ + $(LN) -fs $(TOPDIR)../include/elf.h include/ + $(LN) -fs ../ldso/$(TARGET_ARCH)/boot1_arch.h include/ + $(LN) -fs ../ldso/$(TARGET_ARCH)/ld_syscalls.h include/ + $(LN) -fs ../ldso/$(TARGET_ARCH)/ld_sysdep.h include/ clean: set -e ; for d in $(ALL_SUBDIRS) ; do $(MAKE) -C $$d $@ ; done |