]> andersk Git - splint.git/blame - preBuilt/Makefile.am
noexpand always false.
[splint.git] / preBuilt / Makefile.am
CommitLineData
9b437ab9 1## Note: starting comments with ## means they don't end up in Makefile
2
3AUTOMAKE_OPTIONS = 1.5 foreign
4
5SUFFIXES = .h .c .o .l .check
6
7# Check files before compiling; requires splint!
8CHECK = 1
9
10# Some preferences
11### We use the no-lines option to prevent confusion with splint flag settings.
12### Should fix splint to avoid this...
13YFLAGS = -v -t -d --debug --no-lines
14LFLAGS = -L
15
16binaryDir = bin
17
18## We only build Splint
19bin_PROGRAMS = splint
20
21.PHONY: all
22
23EXTRA_DIST = splint
24
25DIST_SOURCES =
26
27#chessy hack so it doesn't try to build splint
28splint$(EXEEXT): ;
29
30install-exec-hook: $(top_builddir)/src/splint$(EXEEXT)
31
32$(top_builddir)/src/splint$(EXEEXT): splint$(EXEEXT)
33 ln -s ../$(binaryDir)/splint $(top_builddir)/src/splint$(EXEEXT)
34
35#don't delete ./splint
36clean: ;
37
This page took 0.152475 seconds and 5 git commands to generate.