-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile.vc
42 lines (37 loc) · 1.05 KB
/
Makefile.vc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
!include <project/build/Makefile.vc>
all:
cd project\common\src
nmake /nologo /f Makefile.vc
cd ..\..\driver\src
nmake /nologo /f Makefile.vc
cd ..\..\setup\src
nmake /nologo /f Makefile.vc
cd ..\..\installer\src
nmake /nologo /f Makefile.vc
cd ..\..\examples\cpp\src
nmake /nologo /f Makefile.vc
cd ..\..\..
clean:
cd project\common\src
nmake /nologo /f Makefile.vc clean
cd ..\..\driver\src
nmake /nologo /f Makefile.vc clean
cd ..\..\setup\src
nmake /nologo /f Makefile.vc clean
cd ..\..\installer\src
nmake /nologo /f Makefile.vc clean
cd ..\..\examples\cpp\src
nmake /nologo /f Makefile.vc clean
cd ..\..\..
install:
cd project\driver\src\release
copy ezrets.dll c:\windows\system32
cd ..\..\..\setup\src\release
copy ezretss.dll c:\windows\system32
cd ..\..\..\..
project\installer\src\release\RegisterDriver -r
project\installer\src\release\RegisterDriver -i
debug-install: install
copy project\driver\src\release\ezrets.pdb c:\windows\system32
dist:
$(ISCC) /DTARGET_CPU=$(TARGET_CPU) /DVERSION=$(VERSION) project\build\ezRETS.iss