mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 06:39:32 -04:00
CSU source for IA-64. Current we use the ../Alpha sources.
This commit is contained in:
parent
d497785133
commit
d7ff52ec79
1 changed files with 28 additions and 0 deletions
28
lib/csu/ia64/Makefile
Normal file
28
lib/csu/ia64/Makefile
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
.PATH: ${.CURDIR}/../alpha
|
||||
|
||||
SRCS= crt1.c crtbegin.c crtend.c
|
||||
OBJS= crt1.o crtbegin.o crtend.o
|
||||
OBJS+= gcrt1.o
|
||||
SOBJS= crtbegin.So crtend.So
|
||||
CFLAGS+= -Wall -Wno-unused
|
||||
NOMAN= true
|
||||
NOPIC= true
|
||||
NOPROFILE= true
|
||||
INTERNALLIB= true
|
||||
|
||||
all: ${OBJS} ${SOBJS}
|
||||
|
||||
gcrt1.o: crt1.c
|
||||
${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC}
|
||||
|
||||
realinstall:
|
||||
.for file in ${OBJS} ${SOBJS}
|
||||
${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
||||
${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/}
|
||||
.endfor
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
Loading…
Reference in a new issue