diff options
author | tron <tron@openttd.org> | 2005-12-11 07:36:49 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-12-11 07:36:49 +0000 |
commit | ec2675c2c532609fb66df237de8f3e971bfb101a (patch) | |
tree | bfdfa7df52675707fb0de4c5fc6c5478ba901b0b /Makefile | |
parent | 42d8e8410b39c9f0ce2bf89df060fa5ece82e0c9 (diff) | |
download | openttd-ec2675c2c532609fb66df237de8f3e971bfb101a.tar.xz |
(svn r3287) Turn the winres.o: openttd.rc special case into a normal %.o: %.rc rule
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -774,8 +774,7 @@ ifdef BEOS endif ifdef WIN32 - # Resource file - OBJS += winres.o + SRCS += ottdres.rc endif ifdef WITH_DIRECTMUSIC @@ -854,10 +853,6 @@ lang/%.lng: lang/%.txt $(STRGEN) lang/english.txt @echo '===> Compiling language $(*F)' $(Q)$(STRGEN) $(STRGEN_FLAGS) $< $(LANG_ERRORS) || rm -f $@ -winres.o: openttd.rc - @echo '===> Compiling resource $<' - $(Q)$(WINDRES) -o $@ $< - ifdef MORPHOS release: all $(Q)rm -fr "/t/openttd-$(RELEASE)-morphos.lha" @@ -1024,6 +1019,10 @@ endif @echo '===> Compiling $<' $(Q)$(CC) $(CFLAGS) $(CDEFS) -c -o $@ $< +%.o: %.rc + @echo '===> Compiling resource $<' + $(Q)$(WINDRES) -o $@ $< + info: @echo 'CFLAGS = $(CFLAGS)' |