forgot to commit rbuild.h
[reactos.git] / msvc6 / iface / native / makefile
1 # $Id: makefile,v 1.1 2004/02/06 08:21:56 fireball Exp $
2 #
3 # ReactOS Operating System - MSVC6 Zw functions stubs to call generator
4 #
5
6 SYSTEM_CALLS_DB = ..\..\..\reactos\iface\native\sysfuncs.lst
7 KERNEL_ZW_CALLS =..\..\ntoskrnl\nt_zw_msvc.c
8
9 all: genntdll.exe $(KERNEL_ZW_CALLS)
10
11 $(KERNEL_ZW_CALLS) : $(SYSTEM_CALLS_DB)
12 genntdll.exe $(SYSTEM_CALLS_DB) foo1 foo2 $(KERNEL_ZW_CALLS)
13 -@del foo1
14 -@del foo2
15
16 genntdll.exe : genntdll.c
17
18 clean:
19 -@del *.exe
20 -@del *.obj
21 -@del $(KERNEL_ZW_CALLS)
22