aboutsummaryrefslogtreecommitdiff
path: root/lib/csu/arm/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csu/arm/Makefile')
-rw-r--r--lib/csu/arm/Makefile12
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/csu/arm/Makefile b/lib/csu/arm/Makefile
index bf4c7b15c4226..9747619c233af 100644
--- a/lib/csu/arm/Makefile
+++ b/lib/csu/arm/Makefile
@@ -8,7 +8,13 @@ OBJS+= Scrt1.o gcrt1.o
CFLAGS+= -I${.CURDIR}/../common \
-I${.CURDIR}/../../libc/include
-all: ${OBJS}
+FILES= ${OBJS}
+FILESMODE= ${LIBMODE}
+FILESOWN= ${LIBOWN}
+FILESGRP= ${LIBGRP}
+FILESDIR= ${LIBDIR}
+# These FILES qualify as libraries for the purpose of LIBRARIES_ONLY.
+.undef LIBRARIES_ONLY
CLEANFILES= ${OBJS}
CLEANFILES+= crt1.s gcrt1.s Scrt1.s
@@ -37,8 +43,4 @@ Scrt1.s: crt1.c
Scrt1.o: Scrt1.s
${CC} ${ACFLAGS} -c -o ${.TARGET} Scrt1.s
-realinstall:
- ${INSTALL} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
- ${OBJS} ${DESTDIR}${LIBDIR}
-
.include <bsd.lib.mk>