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

Collapse All | Expand All

(-)file_not_specified_in_diff (-5 / +7 lines)
Line  Link Here
0
-- Makefile.in
0
++ Makefile.in
Lines 44-60 Link Here
44
	./mkinstalldirs $(i_bindir) $(i_mandir)
44
	./mkinstalldirs $(i_bindir) $(i_mandir)
45
45
46
install_prog: $(progs)
46
install_prog: $(progs)
47
	mkdir -p $(i_bindir)
47
	if test -f xspect; then \
48
	if test -f xspect; then \
48
	   $(INSTALL_PROGRAM) -s -m 755 xspect $(i_bindir); fi
49
	   $(INSTALL_PROGRAM) -m 755 xspect $(i_bindir); fi
49
	if test -f vgaspect; then \
50
	if test -f vgaspect; then \
50
	   $(INSTALL_PROGRAM) -s -m 4755 vgaspect $(i_bindir); fi
51
	   $(INSTALL_PROGRAM) -m 4755 vgaspect $(i_bindir); fi
51
52
52
install_man:
53
install_man:
54
	mkdir -p $(i_mandir)
53
	$(INSTALL_DATA) ./xspect.1 $(i_mandir)
55
	$(INSTALL_DATA) ./xspect.1 $(i_mandir)
54
	$(INSTALL_DATA) ./tapeout.1 $(i_mandir)
56
	$(INSTALL_DATA) ./tapeout.1 $(i_mandir)
55
	(cd $(i_mandir); rm -f vgaspect.1; ln -s xspect.1 vgaspect.1)
57
	(cd $(i_mandir); rm -f vgaspect.1; ln -s xspect.1 vgaspect.1)
56
58
57
install: installdirs install_prog install_man
59
install: install_prog install_man
58
60
59
z80_c_objs=z80.o z80optab.o z80_step.o spperif.o spect.o rom48.o \
61
z80_c_objs=z80.o z80optab.o z80_step.o spperif.o spect.o rom48.o \
60
           z80_op1.o z80_op2.o z80_op3.o z80_op4.o z80_op5.o z80_op6.o
62
           z80_op1.o z80_op2.o z80_op3.o z80_op4.o z80_op5.o z80_op6.o
Lines 88-94 Link Here
88
	./sp_to_s < i386emul.sp > i386emul.s
90
	./sp_to_s < i386emul.sp > i386emul.s
89
91
90
i386emul.o: i386emul.s
92
i386emul.o: i386emul.s
91
	$(CC) -c $(CFLAGS) i386emul.s
93
	$(CC) -c $(ASFLAGS) -Xassembler --noexecstack i386emul.s
92
94
93
sp_to_s: sp_to_s.o
95
sp_to_s: sp_to_s.o
94
	$(CC) -o sp_to_s $(LDFLAGS) sp_to_s.o
96
	$(CC) -o sp_to_s $(LDFLAGS) sp_to_s.o

Return to bug 255777