Blame


1 2b0eee35 2021-09-21 thomas.ad SUBDIRS = compat libexec got tog gotadmin
2 dd038bc6 2021-09-21 thomas.ad
3 0b2bb718 2021-09-21 thomas.ad EXTRA_DIST = CHANGES CHANGELOG
4 0b2bb718 2021-09-21 thomas.ad
5 dd038bc6 2021-09-21 thomas.ad AM_CPPFLAGS += -DGOT_VERSION='"@VERSION'" \
6 dd038bc6 2021-09-21 thomas.ad -DGOT_VERSION_NUMBER='"@VERSION"' \
7 0130fe58 2021-09-21 thomas.ad -DGOT_LIBEXECDIR="${bindir}" \
8 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir)/lib \
9 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir)/compat \
10 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir)/include
11 dd038bc6 2021-09-21 thomas.ad
12 dd038bc6 2021-09-21 thomas.ad LDADD = $(LIBOBJS)
13 dd038bc6 2021-09-21 thomas.ad
14 dd038bc6 2021-09-21 thomas.ad # FIXME: enable via --enable-debug. Hard-code for now.
15 dd038bc6 2021-09-21 thomas.ad AM_CFLAGS += -g
16 dd038bc6 2021-09-21 thomas.ad AM_CFLAGS += -Wno-long-long -Wall -W -Wformat=2
17 dd038bc6 2021-09-21 thomas.ad AM_CFLAGS += -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
18 dd038bc6 2021-09-21 thomas.ad AM_CFLAGS += -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare
19 dd038bc6 2021-09-21 thomas.ad AM_CFLAGS += -Wundef -Wbad-function-cast -Winline -Wcast-align
20 dd038bc6 2021-09-21 thomas.ad AM_CFLAGS += -Wdeclaration-after-statement -Wno-pointer-sign -Wno-attributes
21 dd038bc6 2021-09-21 thomas.ad AM_CFLAGS += -Wno-unused-result
22 d3f2ad5e 2021-09-21 thomas.ad
23 d3f2ad5e 2021-09-21 thomas.ad tests:
24 d3f2ad5e 2021-09-21 thomas.ad $(MAKE) -C regress/cmdline -f Makefile.linux