| LEFT | RIGHT |
| 1 #---------------------------------- | 1 #---------------------------------- |
| 2 # Makefile for Microsoft NMAKE | 2 # Makefile for Microsoft NMAKE |
| 3 # | 3 # |
| 4 # Call with only the version parameter to set the default target to all installe
rs. | 4 # Call with only the version parameter to set the default target to all installe
rs. |
| 5 # nmake VERSION=1.2.3 | 5 # nmake VERSION=1.2.3 |
| 6 # Call with a definition of the NMAKE variable ARCH on the command line | 6 # Call with a definition of the NMAKE variable ARCH on the command line |
| 7 # nmake VERSION=1.2.3 ARCH=ia32 | 7 # nmake VERSION=1.2.3 ARCH=ia32 |
| 8 # nmake VERSION=1.2.3 ARCH=x64 | 8 # nmake VERSION=1.2.3 ARCH=x64 |
| 9 # If an architecture is specified, the default target is constrained to it. | 9 # If an architecture is specified, the default target is constrained to it. |
| 10 #---------------------------------- | 10 #---------------------------------- |
| 11 | 11 |
| 12 .SUFFIXES: .msi .wixobj .wxs | 12 .SUFFIXES: .msi .wixobj .wxs |
| 13 | 13 |
| 14 Build_Dir_common = ..\build\ # | 14 Build_Dir_common = ..\build\ # |
| 15 Build_Dir_ia32 = ..\build\ia32\ # comment prevents newline | 15 Build_Dir_ia32 = ..\build\ia32\ # comment prevents newline |
| 16 Build_Dir_x64 = ..\build\x64\ # | 16 Build_Dir_x64 = ..\build\x64\ # |
| 17 |
| 18 !ifndef Configuration |
| 17 Configuration = Release Test | 19 Configuration = Release Test |
| 20 !endif |
| 21 |
| 22 !ifndef VERSION |
| 18 VERSION = 99.9 | 23 VERSION = 99.9 |
| 24 !endif |
| 19 | 25 |
| 20 #--------------------- | 26 #--------------------- |
| 21 # Default Targets | 27 # Default Targets |
| 22 # | 28 # |
| 23 # We change the default rule depending upon the ARCH (architecture) definition. | 29 # We change the default rule depending upon the ARCH (architecture) definition. |
| 24 #--------------------- | 30 #--------------------- |
| 25 | 31 |
| 26 Installer_ia32 = $(Build_Dir_ia32)adblockplusie-$(VERSION)-en-us-ia32.msi | 32 Installer_ia32 = $(Build_Dir_ia32)adblockplusie-$(VERSION)-en-us-ia32.msi |
| 27 Installer_x64 = $(Build_Dir_x64)adblockplusie-$(VERSION)-en-us-x64.msi | 33 Installer_x64 = $(Build_Dir_x64)adblockplusie-$(VERSION)-en-us-x64.msi |
| 28 Setup = $(Build_Dir_common)setup-$(VERSION).exe | 34 Setup = $(Build_Dir_common)setup-$(VERSION).exe |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 113 |
| 108 install-setup: $(Setup) | 114 install-setup: $(Setup) |
| 109 $(Setup) | 115 $(Setup) |
| 110 | 116 |
| 111 #--------------------- | 117 #--------------------- |
| 112 # Miscellaneous | 118 # Miscellaneous |
| 113 #--------------------- | 119 #--------------------- |
| 114 | 120 |
| 115 clean: | 121 clean: |
| 116 del $(objects_ia32) | 122 del $(objects_ia32) |
| LEFT | RIGHT |