1# $Id: Makefile,v 1.1.1.1 2008/10/15 03:26:19 james26_jang Exp $
2# Makefile for the Sun Boot PROM interface library under
3# Linux.
4#
5
6USE_STANDARD_AS_RULE := true
7EXTRA_AFLAGS := -ansi
8
9L_TARGET = promlib.a
10obj-y   := bootstr.o devops.o init.o memory.o misc.o \
11	   tree.o console.o printf.o p1275.o map.o
12
13include $(TOPDIR)/Rules.make
14
15%.o: %.c
16	$(CC) $(subst -pg,,$(CFLAGS)) -c $<
17