Sun, 17 Dec 2023 14:25:34 +0100
[Makefile] fix missing rules preventing dry-runs
We have to support dry-runs, because many IDEs are using
dry-runs to collect build information.
Some rules have dependencies that expect certain files or
directories to be just present. We added respective build
rules which invoke the test program. This way, the behavior
when running make normally is exactly the same, but dry-runs
are also not failing now.
791
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
1 | <?xml version="1.0" encoding="utf-8"?> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
3 | <ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
4 | <Filter Include="Quelldateien"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
5 | <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
6 | <Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
7 | </Filter> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
8 | <Filter Include="Headerdateien"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
9 | <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
10 | <Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
11 | </Filter> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
12 | <Filter Include="Ressourcendateien"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
13 | <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
14 | <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
15 | </Filter> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
16 | </ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
17 | <ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
18 | <ClCompile Include="..\..\..\test\base64.c"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
19 | <Filter>Quelldateien</Filter> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
20 | </ClCompile> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
21 | <ClCompile Include="..\..\..\test\crypto.c"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
22 | <Filter>Quelldateien</Filter> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
23 | </ClCompile> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
24 | <ClCompile Include="..\..\..\test\main.c"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
25 | <Filter>Quelldateien</Filter> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
26 | </ClCompile> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
27 | <ClCompile Include="..\..\..\test\test.c"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
28 | <Filter>Quelldateien</Filter> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
29 | </ClCompile> |
793
3ed93d188375
use _mkgmtime instead of mktime in parse_iso8601() on windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
791
diff
changeset
|
30 | <ClCompile Include="..\..\..\test\utils.c"> |
3ed93d188375
use _mkgmtime instead of mktime in parse_iso8601() on windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
791
diff
changeset
|
31 | <Filter>Quelldateien</Filter> |
3ed93d188375
use _mkgmtime instead of mktime in parse_iso8601() on windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
791
diff
changeset
|
32 | </ClCompile> |
791
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
33 | </ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
34 | <ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
35 | <ClInclude Include="..\..\..\test\base64.h"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
36 | <Filter>Headerdateien</Filter> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
37 | </ClInclude> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
38 | <ClInclude Include="..\..\..\test\crypto.h"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
39 | <Filter>Headerdateien</Filter> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
40 | </ClInclude> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
41 | <ClInclude Include="..\..\..\test\test.h"> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
42 | <Filter>Headerdateien</Filter> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
43 | </ClInclude> |
793
3ed93d188375
use _mkgmtime instead of mktime in parse_iso8601() on windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
791
diff
changeset
|
44 | <ClInclude Include="..\..\..\test\utils.h"> |
3ed93d188375
use _mkgmtime instead of mktime in parse_iso8601() on windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
791
diff
changeset
|
45 | <Filter>Headerdateien</Filter> |
3ed93d188375
use _mkgmtime instead of mktime in parse_iso8601() on windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
791
diff
changeset
|
46 | </ClInclude> |
791
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
47 | </ItemGroup> |
38796c7e32b6
fix aes_write on windows could write non-decrypted bytes to output buffer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
48 | </Project> |