mirror of
https://github.com/holub/mame
synced 2025-04-21 07:52:35 +03:00
makefiles:
* move verinfo.c to src/build * move rules for verinfo to src/build/build.mak
This commit is contained in:
parent
c96f0df8fa
commit
88940550a1
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -8,6 +8,7 @@ docs/windows.txt svneol=native#text/plain
|
||||
src/build/build.mak svneol=native#text/plain
|
||||
src/build/file2str.c svneol=native#text/plain
|
||||
src/build/png2bdc.c svneol=native#text/plain
|
||||
src/build/verinfo.c svneol=native#text/plain
|
||||
src/emu/attotime.c svneol=native#text/plain
|
||||
src/emu/attotime.h svneol=native#text/plain
|
||||
src/emu/audio/generic.c svneol=native#text/plain
|
||||
@ -3293,7 +3294,6 @@ src/osd/windows/sound.h svneol=native#text/plain
|
||||
src/osd/windows/strconv.c svneol=native#text/plain
|
||||
src/osd/windows/strconv.h svneol=native#text/plain
|
||||
src/osd/windows/vconv.c svneol=native#text/plain
|
||||
src/osd/windows/verinfo.c svneol=native#text/plain
|
||||
src/osd/windows/video.c svneol=native#text/plain
|
||||
src/osd/windows/video.h svneol=native#text/plain
|
||||
src/osd/windows/winalloc.c svneol=native#text/plain
|
||||
|
@ -57,5 +57,17 @@ $(PNG2BDC): $(PNG2BDCOBJS) $(LIBUTIL) $(LIBOCORE) $(ZLIB) $(EXPAT)
|
||||
@echo Linking $@...
|
||||
$(LD) $(LDFLAGS) $^ $(LIBS) -o $@
|
||||
|
||||
endif
|
||||
#-------------------------------------------------
|
||||
# rule for making the verinfo tool
|
||||
#-------------------------------------------------
|
||||
|
||||
VERINFO = $(BUILDOBJ)/verinfo$(EXE)
|
||||
|
||||
VERINFOOBJS = \
|
||||
$(BUILDOBJ)/verinfo.o
|
||||
|
||||
$(VERINFO): $(VERINFOOBJS) $(LIBOCORE)
|
||||
@echo Linking $@...
|
||||
$(LD) $(LDFLAGS) $^ $(LIBS) -o $@
|
||||
|
||||
endif
|
||||
|
@ -289,17 +289,8 @@ $(LEDUTIL): $(LEDUTILOBJS) $(LIBOCORE)
|
||||
# rule for making the verinfo tool
|
||||
#-------------------------------------------------
|
||||
|
||||
VERINFO = $(WINOBJ)/verinfo$(EXE)
|
||||
|
||||
ifneq ($(CROSS_BUILD),1)
|
||||
BUILD += $(VERINFO)
|
||||
|
||||
VERINFOOBJS = \
|
||||
$(WINOBJ)/verinfo.o
|
||||
|
||||
$(VERINFO): $(VERINFOOBJS) $(LIBOCORE)
|
||||
@echo Linking $@...
|
||||
$(LD) $(LDFLAGS) $^ $(LIBS) -o $@
|
||||
endif
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user