Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ INSTALL_MAN = ${INSTALL} -m 444
DEFS =
DYNFILTER = @DYNFILTER@

LDFLAGS += -L ./agrep/

prefix = @prefix@
exec_prefix = @exec_prefix@
binprefix =
Expand Down Expand Up @@ -84,6 +86,8 @@ agrep: $(PROGAGREP)
NOTSall: $(NOTSPROG) $(NOTSPROGSERVER)

build-sub:
@-mkdir $(BINDIR)
@-mkdir $(LIBDIR)
for d in $(SUBDIRS) ; do \
( cd $$d; $(MAKE) ); \
done
Expand Down
4 changes: 3 additions & 1 deletion glimpse/index/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
DEFS =

LDFLAGS += -L ./../agrep/

prefix = @prefix@
exec_prefix = @exec_prefix@
binprefix =
Expand All @@ -29,7 +31,7 @@ manext = 1
# The binaries will be made in ../bin/. and the agrep library is assumed to
# be in ../lib . You normally don't have to change them.
# NOTE: INDEXDIR can be a relative or absolute path name.
BINDIR = ../bin
BINDIR = ../../bin
AGREPDIR = ../agrep
INDEXDIR = ../index
TEMPLATEDIR = ../libtemplate
Expand Down