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

Collapse All | Expand All

(-)gocr-0.40/src/Makefile.in.orig (-3 / +4 lines)
Lines 42-48 Link Here
42
CPPFLAGS=@CPPFLAGS@
42
CPPFLAGS=@CPPFLAGS@
43
# to see the config.h
43
# to see the config.h
44
CFLAGS=@CFLAGS@ $(CPPFLAGS) -I../include $(DEFS)
44
CFLAGS=@CFLAGS@ $(CPPFLAGS) -I../include $(DEFS)
45
LDFLAGS=@LDFLAGS@ @LIBS@ -L.
45
LDFLAGS=@LDFLAGS@
46
LIBADD=@LIBS@
46
DESTDIR=@prefix@
47
DESTDIR=@prefix@
47
48
48
.c.o:
49
.c.o:
Lines 53-59 Link Here
53
all: $(PROGRAM) $(LIBPGMASCLIB)
54
all: $(PROGRAM) $(LIBPGMASCLIB)
54
55
55
$(PROGRAM): $(LIBPGMASCLIB) gocr.o
56
$(PROGRAM): $(LIBOBJS) gocr.o
56
	$(CC) -o $@ gocr.o $(LDFLAGS) -l$(PGMASCLIB)
57
	$(CC) $(LDFLAGS) $(LIBOBJS) gocr.o $(LIBADD) -o $@
57
	if test -r $(PROGRAM); then cp $@ ../bin; fi
58
	if test -r $(PROGRAM); then cp $@ ../bin; fi
58
59
59
60

Return to bug 132567