Magellan Linux

Contents of /trunk/linterm_tools/fw_builder/make-nk/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 658 - (show annotations) (download)
Mon Jan 14 16:57:24 2008 UTC (16 years, 3 months ago) by niro
File size: 199 byte(s)
initial import

1 AS86 = as86 -3
2 LD86 = ld86 -3
3 CFLAGS = -O2
4 LDFLAGS = -s
5
6 all: boot make-nk
7
8 boot: boot.o
9 $(LD86) -s -o $@ $<
10
11 boot.o: boot.S
12 $(AS86) -o $@ $<
13
14 make-nk: make-nk.c
15
16 clean:
17 rm -f boot boot.o make-nk