Fix build scripts.

This commit is contained in:
CismonX 2021-02-20 18:20:47 +08:00
parent 8e97e21ccf
commit a11dc49a90
Signed by: cismonx
GPG Key ID: 3094873E29A482FB
3 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View File

@ -37,3 +37,4 @@ stamp-h1
# build
*.o
ctlseqs-*.tar.gz

View File

@ -6,8 +6,8 @@
# this notice are preserved. This file is offered as-is, without any warranty.
#
AM_CPPFLAGS = -I$(top_srcdir)/include
AM_CPPFLAGS = -I$(top_srcdir)/include
noinst_PROGRAMS = sixdraw
sixdraw_SOURCES = sixdraw.c
sixdraw_LDADD = $(top_srcdir)/src/libctlseqs.la
sixdraw_LDADD = $(top_builddir)/src/libctlseqs.la

View File

@ -8,10 +8,11 @@
AUTOMAKE_OPTIONS = dejagnu
AM_CPPFLAGS = -I$(top_srcdir)/include
EXTRA_DIST = ctlseqs/*.exp init.exp
noinst_PROGRAMS = tcsgrep
tcsgrep_SOURCES = tcsgrep.c
tcsgrep_LDADD = $(top_srcdir)/src/libctlseqs.la
tcsgrep_LDADD = $(top_builddir)/src/libctlseqs.la
RUNTESTDEFAULTFLAGS = TCSGREP_BIN=$(srcdir)/tcsgrep
EXTRA_DEJAGNU_SITE_CONFIG = $(srcdir)/init.exp