e24168e6c3
* Fix a raft of warnings, printf and otherwise. * Allocate the correct amount in mod_searchmodule to prevent an overflow. * Fix the makefiles so they work outside my home directory (oops).
27 lines
635 B
Makefile
27 lines
635 B
Makefile
# $Id: Makefile,v 1.3 1998/08/31 21:10:40 msmith Exp $
|
|
|
|
LIB= alpha
|
|
NOPIC= true
|
|
NOPROFILE= true
|
|
INTERNALLIB= true
|
|
|
|
# XXX hack to pick up stand.h
|
|
LIBSTANDDIR= ${.CURDIR}/../../../../lib/libstand
|
|
CFLAGS= -I${LIBSTANDDIR}
|
|
CFLAGS+= -DDEBUG
|
|
|
|
# Pick up the bootstrap header for some interface items
|
|
CFLAGS+= -I${.CURDIR}/../../common -mno-fp-regs
|
|
|
|
CFLAGS+= -DDISK_DEBUG
|
|
#CPPFLAGS+= -DNO_DISKLABEL
|
|
#CPPFLAGS+= -DSAVE_MEMORY
|
|
|
|
SRCS= OSFpal.c elf_freebsd.c prom.c prom_disp.S prom_swpal.S start.S \
|
|
pal.S reboot.c delay.c time.c alpha_module.c devicename.c \
|
|
srmdisk.c srmnet.c getsecs.c alpha_copy.c
|
|
|
|
all: libalpha.a
|
|
|
|
.include <bsd.lib.mk>
|