mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-21 02:23:20 +00:00
fix old package-build-order error in autoconfig, surfaced by recent UT mod
This commit is contained in:
parent
3ccd72ec63
commit
3a58bf3c0a
3 changed files with 8 additions and 6 deletions
|
|
@ -1,4 +1,4 @@
|
|||
SUBDIRS= lib cli stream input mapping output containers dsls experimental tools . unit_test reg_test
|
||||
SUBDIRS= lib cli stream input mapping containers output dsls experimental tools . unit_test reg_test
|
||||
|
||||
AM_CPPFLAGS= -I${srcdir}
|
||||
AM_CFLAGS= -Wall -std=gnu99
|
||||
|
|
|
|||
|
|
@ -16,6 +16,8 @@ liboutput_la_SOURCES= \
|
|||
multi_lrec_writer.h \
|
||||
multi_out.c \
|
||||
multi_out.h
|
||||
liboutput_la_LIBADD= ../lib/libmlr.la
|
||||
liboutput_la_LIBADD= \
|
||||
../lib/libmlr.la \
|
||||
../containers/libcontainers.la
|
||||
liboutput_la_CPPFLAGS= -I${srcdir}/../
|
||||
liboutput_la_CFLAGS= -std=gnu99
|
||||
|
|
|
|||
|
|
@ -18,14 +18,14 @@ AM_CPPFLAGS= -I${srcdir}/..
|
|||
AM_CFLAGS= -Wall -std=gnu99
|
||||
|
||||
all_ldadd= \
|
||||
../cli/libcli.la \
|
||||
../lib/libmlr.la \
|
||||
../containers/libcontainers.la \
|
||||
../stream/libstream.la \
|
||||
../dsls/libdsl.la \
|
||||
../cli/libcli.la \
|
||||
../input/libinput.la \
|
||||
../mapping/libmapping.la \
|
||||
../output/liboutput.la \
|
||||
../lib/libmlr.la \
|
||||
../dsls/libdsl.la \
|
||||
../stream/libstream.la \
|
||||
-lm
|
||||
|
||||
# Unit-test mains
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue