mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fixed a path problem in the makefile that Phillip reported a few days ago.
Unix paths are handled correctly by DOS and Win32 kernels, but NOT by command.com and cmd.exe shells. Therefore, when a path is to be handed to a shell, use \ but when you hand it to any other program, use / instead. svn path=/trunk/; revision=1208
This commit is contained in:
parent
3d2ca25cb4
commit
a8ed3ed57e
1 changed files with 14 additions and 13 deletions
|
@ -1,4 +1,4 @@
|
|||
# $Id: makefile,v 1.5 2000/06/17 23:58:53 dwelch Exp $
|
||||
# $Id: makefile,v 1.6 2000/06/24 09:02:02 ea Exp $
|
||||
#
|
||||
# ReactOS Operating System
|
||||
#
|
||||
|
@ -11,19 +11,20 @@ TARGETNAME = genw32k
|
|||
SVC_DB=w32ksvc.db
|
||||
SVC_MASK=0x1000
|
||||
|
||||
ifeq ($(DOSCLI),yes)
|
||||
SVC_SERVICE_TABLE_PATH=..\..\subsys\win32k\main\\
|
||||
SVC_GDI_STUBS_PATH=..\..\lib\gdi32\misc\\
|
||||
SVC_USER_STUBS_PATH=..\..\lib\user32\misc\\
|
||||
else
|
||||
SVC_SERVICE_TABLE_PATH=../../subsys/win32k/main/
|
||||
SVC_GDI_STUBS_PATH=../../lib/gdi32/misc/
|
||||
SVC_USER_STUBS_PATH=../../lib/user32/misc/
|
||||
endif
|
||||
# DOS and Win32 kernels handle Unix paths too.
|
||||
#ifeq ($(DOSCLI),yes)
|
||||
#SVC_SERVICE_TABLE_PATH=..\..\subsys\win32k\main
|
||||
#SVC_GDI_STUBS_PATH=..\..\lib\gdi32\misc
|
||||
#SVC_USER_STUBS_PATH=..\..\lib\user32\misc
|
||||
#else
|
||||
SVC_SERVICE_TABLE_PATH=../../subsys/win32k/main
|
||||
SVC_GDI_STUBS_PATH=../../lib/gdi32/misc
|
||||
SVC_USER_STUBS_PATH=../../lib/user32/misc
|
||||
#endif
|
||||
|
||||
SVC_SERVICE_TABLE=$(SVC_SERVICE_TABLE_PATH)svctab.c
|
||||
SVC_GDI_STUBS=$(SVC_GDI_STUBS_PATH)win32k.c
|
||||
SVC_USER_STUBS=$(SVC_USER_STUBS_PATH)win32k.c
|
||||
SVC_SERVICE_TABLE=$(SVC_SERVICE_TABLE_PATH)/svctab.c
|
||||
SVC_GDI_STUBS=$(SVC_GDI_STUBS_PATH)/win32k.c
|
||||
SVC_USER_STUBS=$(SVC_USER_STUBS_PATH)/win32k.c
|
||||
|
||||
SVC_FILES = $(SVC_GDI_STUBS) $(SVC_USER_STUBS) $(SVC_SERVICE_TABLE)
|
||||
|
||||
|
|
Loading…
Reference in a new issue