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

(-)./buildtools/Makefile.old (-2 / +2 lines)
Lines 29-45 libopt.o: libopt.c Link Here
29
	  $(STRIP_DLL_VERSION) $(EXPLICIT) \
29
	  $(STRIP_DLL_VERSION) $(EXPLICIT) \
30
	  $(CFLAGS_PERSONAL) $(CFLAGS) $(CADD) \
30
	  $(CFLAGS_PERSONAL) $(CFLAGS) $(CADD) \
31
	  $<
31
	  $<
32
32
33
typegen.o endiangen.o:%.o:%.c
33
typegen.o endiangen.o:%.o:%.c
34
	$(CC_FOR_BUILD) -c -o $@ $(CFLAGS_FOR_BUILD) $<
34
	$(CC_FOR_BUILD) -c -o $@ $(CFLAGS_FOR_BUILD) $(CFLAGS) $<
35
35
36
# genfontc is strange because it isn't really a build tool; it's a development
36
# genfontc is strange because it isn't really a build tool; it's a development
37
# tool.  And it uses Netpbm.  So we don't even build it by default and the
37
# tool.  And it uses Netpbm.  So we don't even build it by default and the
38
# developer who builds it explicitly may have to be careful.
38
# developer who builds it explicitly may have to be careful.
39
genfontc.o:%.o:%.c importinc
39
genfontc.o:%.o:%.c importinc
40
	$(CC_FOR_BUILD) -c -o $@ $(CFLAGS_FOR_BUILD) \
40
	$(CC_FOR_BUILD) -c -o $@ $(CFLAGS_FOR_BUILD) $(CFLAGS) \
41
	  $(NETPBM_INCLUDES) \
41
	  $(NETPBM_INCLUDES) \
42
	  $<
42
	  $<
43
genfontc:%:%.o $(NETPBMLIB)
43
genfontc:%:%.o $(NETPBMLIB)
44
	$(LD_FOR_BUILD) -o $@ $(LDFLAGS_FOR_BUILD)  $< $(NETPBMLIB)
44
	$(LD_FOR_BUILD) -o $@ $(LDFLAGS_FOR_BUILD)  $< $(NETPBMLIB)
45
45
(-)./test/Makefile.old (-1 / +1 lines)
Lines 13-23 PROGS = testrandom Link Here
13
OKSTOGENERATE = $(patsubst %.rand-ok, %.ok, $(wildcard *.rand-ok))
13
OKSTOGENERATE = $(patsubst %.rand-ok, %.ok, $(wildcard *.rand-ok))
14
14
15
all: $(PROGS) $(OKSTOGENERATE)
15
all: $(PROGS) $(OKSTOGENERATE)
16
16
17
testrandom.o: testrandom.c
17
testrandom.o: testrandom.c
18
	$(CC_FOR_BUILD) -c -o $@ $(CFLAGS_FOR_BUILD) $<
18
	$(CC_FOR_BUILD) $(CFLAGS) -c -o $@ $(CFLAGS_FOR_BUILD) $<
19
19
20
testrandom: testrandom.o
20
testrandom: testrandom.o
21
	$(LD_FOR_BUILD) -o $@ $(LDFLAGS_FOR_BUILD) $<
21
	$(LD_FOR_BUILD) -o $@ $(LDFLAGS_FOR_BUILD) $<
22
22
23
RAND_VARIETY ?= $(shell ./testrandom -x)
23
RAND_VARIETY ?= $(shell ./testrandom -x)

Return to bug 828127