diff options
author | Steve Hay <SteveHay@planit.com> | 2004-01-22 17:08:29 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-01-22 20:48:03 +0000 |
commit | e84ac4e2e047fe0bbb7415313afdde3e76eafca7 (patch) | |
tree | b7bf59e8b82d104dcaa584eaf604ef64a66d43e7 /win32/Makefile | |
parent | 39a440a3c4b75def586b31dae242e1a577484c0e (diff) | |
download | perl-e84ac4e2e047fe0bbb7415313afdde3e76eafca7.tar.gz |
Re: [PATCH] Add "Camel" logo icon to perl.exe on Windows
Message-ID: <4010038D.4070104@uk.radan.com>
p4raw-id: //depot/perl@22195
Diffstat (limited to 'win32/Makefile')
-rw-r--r-- | win32/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/win32/Makefile b/win32/Makefile index fd363fb186..6ec377a1a3 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -349,7 +349,8 @@ LIBC = msvcrt.lib LIBC = PerlCRT.lib !ENDIF -PERLEXE_RES = +PERLEXE_ICO = perlexe.ico +PERLEXE_RES = perlexe.res PERLDLL_RES = !IF "$(CFG)" == "Debug" @@ -896,6 +897,11 @@ $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) << $(XCOPY) $(PERLIMPLIB) $(COREDIR) +$(PERLEXE_ICO): $(MINIPERL) makeico.pl + $(MINIPERL) makeico.pl > $@ + +$(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO) + $(MINIMOD) : $(MINIPERL) ..\minimod.pl cd .. miniperl minimod.pl > lib\ExtUtils\Miniperl.pm |