RtlUnicodeStringToCountedOemString() is now "pass"ed
[reactos.git] / loaders / boot / boot.mak
1 #
2 # makefile for DOS-C boot
3 #
4 # $Header$
5 #
6 #   Rev 1.3   10 Jan 1997  4:51:54   patv
7 #Changed to use FreeDOS exe2bin and support new boot code
8 #
9 #   Rev 1.2   17 Dec 1996 12:52:32   patv
10 #Converted to FreeDOS exe2bin.
11 #.
12 #d
13 #
14 #   Rev 1.1   29 Aug 1996 13:06:50   patv
15 #Bug fixes for v0.91b
16 #
17 #   Rev 1.0   02 Jul 1995  9:11:26   patv
18 #Initial revision.
19 #
20
21 #
22 # Uncomment the following for a debug version
23 #
24 #AFLAGS  =      /zi /DDEBUG
25 #LFLAGS  =      /v
26
27 PRODUCT =       boot.bin
28
29 all:            $(PRODUCT)
30
31 production:     all
32                 copy boot.bin ..\..\dist\boot.bin
33                 del *.bin
34                 del *.map
35
36 boot.bin:       boot.asm
37                 tasm $(AFLAGS) boot,,
38                 tlink $(LFLAGS) boot
39                 ..\utils\exe2bin boot boot.bin
40                 del boot.obj
41                 del boot.exe
42
43 clean:
44                 del *.lst
45                 del *.map
46                 del *.bin
47                 del *.bak
48                 del *.las
49                 del *.obj
50                 del *.exe
51