Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / arch / hpcmips / stand / romboot / Makefile
blob3756a1757229a866a2102aa439a3c8f846505098
1 # $NetBSD: Makefile,v 1.1 2001/12/23 13:27:56 shin Exp $
3 CC?= ${CROSSDIR}cc
4 AS?= ${CROSSDIR}as
5 LD?= ${CROSSDIR}ld
6 OBJCOPY?= ${CROSSDIR}objcopy
8 AFLAGS+= -x assembler-with-cpp
10 all: romboot.bin
12 clean:
13 rm -f romboot.bin romboot romboot.o
15 romboot: romboot.o
16 $(LD) -o $@ -N -T romboot.ldscript -Ttext 0 -e _start $?
18 romboot.bin: romboot
19 $(OBJCOPY) --remove-section=.reginfo -O binary $? $@