1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 12:02:47 -05:00

Fix problems with resource compilation Makefile lines

[originally from svn r371]
This commit is contained in:
Simon Tatham
2000-01-19 12:16:19 +00:00
parent 21d2f97597
commit 6e7131412e
2 changed files with 5 additions and 5 deletions

View File

@ -85,7 +85,7 @@ print
"\t\$(CC) \$(FWHACK) \$(CFLAGS) -c \$<\n".
"\n".
"%.o: %.rc\n".
"\t\$(RC) \$(FWHACK) \$(RCFLAGS) \$<\n".
"\t\$(RC) \$(FWHACK) \$(RCFL) \$(RCFLAGS) \$< \$\@\n".
"\n";
foreach $p (@projects) {
print $p, ".exe: ", &project($p), "\n";
@ -127,7 +127,7 @@ print
".c.obj:\n".
"\tbcc32 \$(COMPAT) \$(FWHACK) \$(CFLAGS) /c \$*.c\n".
".rc.res:\n".
"\tbrc32 \$(FWHACK) -i \$(BCB)\\include \\\n".
"\tbrc32 \$(FWHACK) \$(RCFL) -i \$(BCB)\\include \\\n".
"\t\t-r -DWIN32 -D_WIN32 -DWINVER=0x0400 \$*.rc\n".
"\n".
"OBJ=obj\n".