File: Makefile.am

package info (click to toggle)
scrub 2.4.1-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 984 kB
  • sloc: sh: 3,775; ansic: 2,544; makefile: 45
file content (30 lines) | stat: -rw-r--r-- 1,016 bytes parent folder | download
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
check_PROGRAMS = pad trand aestest tprogress tgetsize tsig tsize pat

TESTS_ENVIRONMENT = env 
TESTS_ENVIRONMENT += "PATH_SCRUB=$(top_builddir)/src/scrub"
TESTS = t00 t01 t02 t03 t04 t05 t06 t07 t08 t09 t10 t11 t12 t13 t14
EXPS = t00.exp t01.exp t02.exp t03.exp t04.exp t05.exp t06.exp t07.exp \
	t08.exp t10-cartman.exp t10-jimmy.exp t10-manbearpig.exp \
	t10-marklar.exp t10-timmy.exp t11.exp t12.exp t13.exp t14.exp

CLEANFILES = *.out *.diff testfile

AM_CFLAGS = -I$(top_srcdir)/src

common_sources = \
	$(top_srcdir)/src/getsize.c \
	$(top_srcdir)/src/genrand.c \
	$(top_srcdir)/src/aes.c \
	$(top_srcdir)/src/util.c \
	$(top_srcdir)/src/progress.c \
	$(top_srcdir)/src/sig.c

pad_SOURCES = pad.c $(common_sources)
trand_SOURCES = trand.c $(common_sources)
aestest_SOURCES = aestest.c $(common_sources)
tprogress_SOURCES = tprogress.c $(common_sources)
tgetsize_SOURCES = tgetsize.c $(common_sources)
tsig_SOURCES = tsig.c $(common_sources)
pat_SOURCES = pat.c $(common_sources)

EXTRA_DIST = $(TESTS) $(EXPS)