Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 131198 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile.in.orig (-5 / +5 lines)
Lines 103-111 Link Here
103
endif
103
endif
104
104
105
%.o: %.psr
105
%.o: %.psr
106
	./${PSR} @PSRFLAGS@ -cheader psrhead/$(patsubst %.o,%.h,$@) -fname $(patsubst %.o,%,$@) temppsr.c $<
106
	./${PSR} @PSRFLAGS@ -cheader psrhead/$(patsubst %.o,%.h,$@) -fname $(patsubst %.o,%,$@) temppsr_$(patsubst %.o,%,$@).c $<
107
	@CC@ @CFLAGS@ -O1 -o $@ -c temppsr.c
107
	@CC@ @CFLAGS@ -O1 -o $@ -c temppsr_$(patsubst %.o,%,$@).c
108
	rm -f temppsr.c
108
	rm -f temppsr_$(patsubst %.o,%,$@).c
109
109
110
ALL: @ZSNESEXE@
110
ALL: @ZSNESEXE@
111
111
Lines 300-306 Link Here
300
	rm -f @prefix@/bin/$(notdir @ZSNESEXE@) @prefix@/man/man5/zsnes.5
300
	rm -f @prefix@/bin/$(notdir @ZSNESEXE@) @prefix@/man/man5/zsnes.5
301
301
302
clean:
302
clean:
303
	rm -f ${ZOBJS} ${PSR} psrhead/*.h temppsr.c @ZSNESEXE@
303
	rm -f ${ZOBJS} ${PSR} psrhead/*.h temppsr_*.c @ZSNESEXE@
304
304
305
distclean:
305
distclean:
306
	rm -f ${ZOBJS} ${PSR} psrhead/*.h temppsr.c @ZSNESEXE@ Makefile aclocal.m4 configure config.cache config.log config.status config.h
306
	rm -f ${ZOBJS} ${PSR} psrhead/*.h temppsr_*.c @ZSNESEXE@ Makefile aclocal.m4 configure config.cache config.log config.status config.h
(-)makefile.ms.orig (-4 / +4 lines)
Lines 239-251 Link Here
239
endif
239
endif
240
240
241
%${OE}: %.psr
241
%${OE}: %.psr
242
	${PSR} -D${OS} -cheader psrhead/$(patsubst %${OE},%.h,$@) -fname $(patsubst %${OE},%,$@) temppsr.c $<
242
	${PSR} -D${OS} -cheader psrhead/$(patsubst %${OE},%.h,$@) -fname $(patsubst %${OE},%,$@) temppsr_$(patsubst %${OE},%,$@).c $<
243
ifneq (${ENV},msvc)
243
ifneq (${ENV},msvc)
244
	${CC} -o $@ -c temppsr.c
244
	${CC} -o $@ -c temppsr_$(patsubst %${OE},%,$@).c
245
else
245
else
246
	cl /nologo /Ox /G6 /c /EHsc /D__WIN32__ /Fo$@ temppsr.c
246
	cl /nologo /Ox /G6 /c /EHsc /D__WIN32__ /Fo$@ temppsr_$(patsubst %${OE},%,$@).c
247
endif
247
endif
248
	${DELETECOMMAND} temppsr.c
248
	${DELETECOMMAND} temppsr_$(patsubst %${OE},%,$@).c
249
249
250
ALL: zsnes
250
ALL: zsnes
251
	${DELETECOMMAND} version${OE}
251
	${DELETECOMMAND} version${OE}

Return to bug 131198