File: Makefile.am

package info (click to toggle)
hkl 5.1.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,992 kB
  • sloc: ansic: 57,080; haskell: 5,996; sh: 4,991; cpp: 1,846; makefile: 1,129; python: 925; xml: 76; lisp: 55
file content (23 lines) | stat: -rw-r--r-- 424 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
AM_CFLAGS = \
	-I$(top_srcdir) \
	-I$(abs_top_srcdir)/tests \
	$(DATATYPE99_CFLAGS) \
	$(GLIB_CFLAGS) \
	$(GSL_CFLAGS)

check_LIBRARIES = libtap.a
libtap_a_SOURCES = \
	basic.c \
	basic.h \
	float.h \
	float.c \
	macros.h \
	hkl-tap.h \
	hkl-tap.c

# Support for GNU Flymake, in Emacs.
check-syntax: AM_CFLAGS += -fsyntax-only -pipe
check-syntax:
	test -z "$(CHK_SOURCES)" || $(COMPILE) $(CHK_SOURCES)

.PHONY: check-syntax