Navigation Menu

Skip to content

Commit

Permalink
split a long line to multi lines
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Mar 7, 2012
1 parent 60324cc commit b33c9f6
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions test/unit/Makefile.am
Expand Up @@ -2,16 +2,28 @@ if WITH_CUTTER
noinst_LTLIBRARIES = test_mrn_sys.la
endif

AM_CPPFLAGS = $(GROONGA_CFLAGS) $(MECAB_INCLUDES) $(CPPCUTTER_CFLAGS)
AM_CPPFLAGS = \
$(GROONGA_CFLAGS) \
$(MECAB_INCLUDES) \
$(CPPCUTTER_CFLAGS)
AM_INCLUDES = -I$(top_srcdir)
ACLOCAL_AMFLAGS = $$ACLOCAL_ARGS

DEFS = @DEFS@

LDFLAGS = -module -rpath $(libdir) -avoid-version -no-undefined
LDFLAGS = \
-module \
-rpath $(libdir) \
-avoid-version \
-no-undefined

LIBS = $(CUTTER_LIBS) $(GROONGA_LIBS) $(MECAB_LIBS)
LIBS = \
$(CUTTER_LIBS) \
$(GROONGA_LIBS) \
$(MECAB_LIBS)

EXTERNAL_SRC = ../../mrn_sys.c

test_mrn_sys_la_SOURCES = $(EXTERNAL_SRC) test_mrn_sys.cpp
test_mrn_sys_la_SOURCES = \
$(EXTERNAL_SRC) \
test_mrn_sys.cpp

0 comments on commit b33c9f6

Please sign in to comment.