Files
Arquivotheca.SunOS-4.1.3/lib/libc/gen/common/debug/Makefile
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

31 lines
526 B
Makefile

#
# @(#)Makefile 1.1 92/07/30 SMI; from UCB 4.23 83/07/01
#
DESTDIR=
CRYPT=-DCRYPT
CFLAGS= -O ${CRYPT} -DDEBUG
DEBUGDIR= ${DESTDIR}/usr/lib/debug
CC = /bin/cc
OBJS= malloc.o mallocmap.o
debug: ${OBJS}
malloc.o: ../malloc.c ../mallint.h
${CC} ${CFLAGS} -c -I.. ../malloc.c
mallocmap.o: mallocmap.c ../mallint.h
${CC} ${CFLAGS} -c -I.. mallocmap.c
clean:
rm -f ${OBJS}
install: debug ${DEBUGDIR}
-for i in ${OBJS}; do \
install -m 644 $${i} ${DEBUGDIR}/$${i}; \
done
${DEBUGDIR}:
install -d -m 755 ${DEBUGDIR}