blob: 58c87371dafaa046b156636e2f218ac80cbc602e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
## Makefile.am for axohelp
##
## Copyright (C) 2018 John Collins
## You may freely use, modify and/or distribute this file.
##
AM_CFLAGS = $(WARNING_CFLAGS)
bin_PROGRAMS = axohelp
axohelp_SOURCES = axohelp.c
## Test
TESTS = axohelp.test
dist_check_SCRIPTS = $(TESTS)
CLEANFILES = test.ax2
|