51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
# $NetBSD: Makefile.inc,v 1.6 1995/11/17 23:23:44 gwr Exp $
|
|
|
|
.if defined(SA_PROG)
|
|
|
|
# Must have S=/usr/src/sys (or equivalent)
|
|
# But note: this is w.r.t. a subdirectory
|
|
S= ${.CURDIR}/../../../..
|
|
|
|
RELOC?= 240000
|
|
DEFS?= -DSTANDALONE
|
|
INCL?= -I${.CURDIR} -I${.CURDIR}/../libsa -I${S}/lib/libsa -I${S}
|
|
COPTS?= -msoft-float ${DEFS} ${DBG} ${INCL}
|
|
|
|
LIBSA?= ../libsa
|
|
SRTOBJ?= ${LIBSA}/SRT0.o ${LIBSA}/SRT1.o
|
|
SRTLIB?= ${LIBSA}/libsa.a
|
|
|
|
MDEC_DIR?=/usr/mdec
|
|
|
|
SRCS?= ${SA_PROG}.c
|
|
OBJS?= ${SRCS:S/.c/.o/g}
|
|
|
|
CLEANFILES+= ${SA_PROG} ${SA_PROG}.bin
|
|
|
|
# Make a copy of the executable with its exec header removed,
|
|
# and with its length padded to a multiple of 1k bytes.
|
|
# (The padding is for convenience when making tapes.)
|
|
${SA_PROG}.bin : ${SA_PROG}
|
|
cp ${SA_PROG} a.out ; strip a.out
|
|
dd if=a.out ibs=32 skip=1 of=$@ obs=1k conv=osync
|
|
-rm -f a.out
|
|
|
|
${SA_PROG} : ${OBJS} ${DPADD}
|
|
${LD} -N -T ${RELOC} -e start -o $@ \
|
|
${SRTOBJ} ${OBJS} ${LDADD} ${SRTLIB}
|
|
@size $@
|
|
|
|
.if !target(clean)
|
|
clean:
|
|
-rm -f a.out [Ee]rrs mklog core *.core
|
|
-rm -f ${CLEANFILES} *.o
|
|
.endif
|
|
|
|
.if !target(install)
|
|
install: ${SA_PROG}.bin
|
|
install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
|
${SA_PROG}.bin ${DESTDIR}${MDEC_DIR}/${SA_PROG}
|
|
.endif
|
|
|
|
.endif
|