Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 19525
Collapse All | Expand All

(-)sexypsf/Linux/Makefile (-2 / +1 lines)
Lines 8-14 Link Here
8
RM = rm -f
8
RM = rm -f
9
STRIP = strip
9
STRIP = strip
10
10
11
OPTIMIZE = -O2 -fomit-frame-pointer -finline-functions -ffast-math
12
FLAGS = -g -D__LINUX__ -DPSS_STYLE=1 
11
FLAGS = -g -D__LINUX__ -DPSS_STYLE=1 
13
#-DTIMEO
12
#-DTIMEO
14
LIBS = -lz
13
LIBS = -lz
Lines 20-26 Link Here
20
19
21
OBJS+= LnxMain.o
20
OBJS+= LnxMain.o
22
21
23
CFLAGS = -Wall -Winline ${OPTIMIZE} -I. -I.. -I/usr/include/g++ ${FLAGS}
22
CFLAGS+= -Wall -Winline -I. -I.. -I/usr/include/g++ ${FLAGS}
24
CFLAGS+= $(shell gtk-config --cflags)
23
CFLAGS+= $(shell gtk-config --cflags)
25
#CFLAGS+= $(shell pkg-config gtk+-2.0 --cflags)
24
#CFLAGS+= $(shell pkg-config gtk+-2.0 --cflags)
26
25
(-)sexypsf/xmms/Makefile (-3 / +2 lines)
Lines 11-17 Link Here
11
RM = rm -f
11
RM = rm -f
12
#LD = ld -shared
12
#LD = ld -shared
13
LIBS = -lz -shared $(shell gtk-config --libs)
13
LIBS = -lz -shared $(shell gtk-config --libs)
14
OPTIMIZE = -O2 -finline-functions -ffast-math
15
FLAGS = -DPSS_STYLE=1
14
FLAGS = -DPSS_STYLE=1
16
15
17
OBJS = ../PsxBios.o ../PsxCounters.o ../PsxDma.o \
16
OBJS = ../PsxBios.o ../PsxCounters.o ../PsxDma.o \
Lines 22-28 Link Here
22
OBJS+= xmms.o
21
OBJS+= xmms.o
23
22
24
ifeq (${CPU}, ix86)
23
ifeq (${CPU}, ix86)
25
	OPTIMIZE += -fomit-frame-pointer -mcpu=i686 -fno-exceptions
24
#	OPTIMIZE += -fomit-frame-pointer -mcpu=i686 -fno-exceptions
26
endif
25
endif
27
26
28
ifeq (${CPU}, ppc)
27
ifeq (${CPU}, ppc)
Lines 33-39 Link Here
33
	FLAGS+=-DMSB_FIRST
32
	FLAGS+=-DMSB_FIRST
34
endif
33
endif
35
34
36
CFLAGS = -Wall ${OPTIMIZE} -I. -I.. -I/usr/include/g++ ${FLAGS}
35
CFLAGS+= -Wall -I. -I.. -I/usr/include/g++ ${FLAGS}
37
CFLAGS+= $(shell gtk-config --cflags)
36
CFLAGS+= $(shell gtk-config --cflags)
38
37
39
#ifdef LD
38
#ifdef LD

Return to bug 19525