Import 2.3.99pre4-2
[davej-history.git] / arch / ia64 / boot / Makefile
blob5228d6c57eaf118cde73c44d7e0d0538cc10d771
2 # ia64/boot/Makefile
4 # This file is subject to the terms and conditions of the GNU General Public
5 # License. See the file "COPYING" in the main directory of this archive
6 # for more details.
8 # Copyright (C) 1998 by David Mosberger-Tang <davidm@hpl.hp.com>
11 LINKFLAGS = -static -T bootloader.lds
13 .S.s:
14 $(CPP) $(AFLAGS) -traditional -o $*.o $<
15 .S.o:
16 $(CC) $(AFLAGS) -traditional -c -o $*.o $<
18 OBJECTS = bootloader.o
19 TARGETS =
21 ifdef CONFIG_IA64_HP_SIM
22 TARGETS += bootloader
23 endif
25 all: $(TARGETS)
27 bootloader: $(OBJECTS)
28 $(LD) $(LINKFLAGS) $(OBJECTS) $(LIBS) -o bootloader
30 clean:
31 rm -f $(TARGETS)
33 dep: