-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
46 lines (35 loc) · 934 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
##
# Top-level Makefile for libfastmap
#
# headers location
AM_CPPFLAGS = -I$(top_srcdir)/include
# m4 path
ACLOCAL_AMFLAGS = -I m4
# Makefile fragments will complete these variables
bin_PROGRAMS =
lib_LTLIBRARIES =
noinst_LIBRARIES = libtap.a
EXTRA_DIST = t/tap.t
check_PROGRAMS =
include_HEADERS = include/fastmap.h
libtap_a_SOURCES = tap.c tap.h
libtap_a_CPPFLAGS = $(AM_CFLAGS) -Wall
# makefile fragments
include src/Rules.mk
include t/Rules.mk
if USE_VALGRIND
TESTS_ENVIRONMENT=$(top_srcdir)/meta-util/valgrind-wrapper.sh
endif
TESTS = $(check_PROGRAMS)
really-clean: maintainer-clean
find $(top_srcdir) -name \*.in -exec rm {} \;
find $(top_srcdir) -name \*.in~ -exec rm {} \;
rm $(top_srcdir)/m4/*
rm $(top_srcdir)/build-aux/*
rmdir $(top_srcdir)/m4
rmdir $(top_srcdir)/build-aux
rm $(top_srcdir)/aclocal.m4
rm $(top_srcdir)/configure
rmdir $(top_builddir)/src
rmdir $(top_builddir)/t
.PHONY: really-clean