mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
72 lines
1.9 KiB
Makefile
72 lines
1.9 KiB
Makefile
SUBDIRS= lib cli stream input dsl mapping containers output parsing auxents experimental . unit_test reg_test
|
|
|
|
AM_CPPFLAGS= -I${srcdir}
|
|
AM_CFLAGS= -Wall -std=gnu99
|
|
bin_PROGRAMS= mlr
|
|
noinst_PROGRAMS= mlrg
|
|
|
|
mlr_SOURCES= mlrmain.c
|
|
|
|
mlr_LDFLAGS= -static
|
|
|
|
mlr_LDADD= \
|
|
cli/libcli.la \
|
|
containers/libcontainers.la \
|
|
stream/libstream.la \
|
|
input/libinput.la \
|
|
dsl/libdsl.la \
|
|
mapping/libmapping.la \
|
|
output/liboutput.la \
|
|
lib/libmlr.la \
|
|
parsing/libdsl.la \
|
|
auxents/libauxents.la \
|
|
-lm
|
|
|
|
# Resulting link line:
|
|
# /bin/sh ../libtool --tag=CC --mode=link
|
|
# gcc
|
|
# -Wall -std=gnu99
|
|
# -g -O2
|
|
# <<<LDFLAGS GO HERE>>> <-------------------------------------
|
|
# -o mlr
|
|
# mlrmain.o
|
|
# cli/libcli.la
|
|
# containers/libcontainers.la
|
|
# stream/libstream.la
|
|
# input/libinput.la
|
|
# dsl/libdsl.la
|
|
# mapping/libmapping.la
|
|
# output/liboutput.la
|
|
# lib/libmlr.la
|
|
# parsing/libdsl.la
|
|
# auxents/libauxents.la
|
|
# <<<LDADD GOES HERE>>> <-------------------------------------
|
|
|
|
# Other executable variants
|
|
|
|
# Debug version:
|
|
mlrg_CFLAGS= -g ${AM_CFLAGS}
|
|
mlrg_LDFLAGS= ${mlr_LDFLAGS}
|
|
mlrg_LDADD= ${mlr_LDADD}
|
|
mlrg_SOURCES= ${mlr_SOURCES}
|
|
|
|
# Profile version. Usage:
|
|
# * make mlrp
|
|
# * mlrp {arguments>
|
|
# * gprof mlrp gmon.out > myfile.txt
|
|
# Note: works on Linux; not on OSX. On FreeBSD it sounds like it'll need an
|
|
# extra -lc on the link line.
|
|
#mlrp_CFLAGS= -g -pg ${AM_CFLAGS}
|
|
#mlrp_LDFLAGS= ${mlr_LDFLAGS}
|
|
#mlrp_LDADD= ${mlr_LDADD}
|
|
#mlrp_SOURCES= ${mlr_SOURCES}
|
|
|
|
# ================================================================
|
|
# Run this after unit-test expected output has changed, and is verified to be
|
|
# OK. (Example: after adding new test cases in test/run.)
|
|
regtest-copy:
|
|
cp output/out reg_test/expected
|
|
|
|
# ================================================================
|
|
perfclean profclean:
|
|
@rm -vf gmon.out perf.data perf.data.old
|