24 lines
460 B
Plaintext
24 lines
460 B
Plaintext
!IF 0
|
|
|
|
Copyright (C) Microsoft Corporation, 1998 - 1999
|
|
|
|
Module Name:
|
|
|
|
makefil0.
|
|
|
|
!ENDIF
|
|
|
|
|
|
all: idfile
|
|
!if "$(_TGTOS)" != "CE"
|
|
!if "$(_NTX86TREE)" != ""
|
|
binplace -R $(_NTX86TREE)\TSClient -P Placefil.txt idfile
|
|
!else if "$(_NTAMD64TREE)" != ""
|
|
binplace -R $(_NTAMD64TREE)\TSClient -P Placefil.txt idfile
|
|
!else if "$(_NTIA64TREE)" != ""
|
|
binplace -R $(_NTIA64TREE)\TSClient -P Placefil.txt idfile
|
|
!endif
|
|
!endif
|
|
|
|
clean: all
|