blob: 6967aa170dade30f5f86e10ff5cc7770d23c7f6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
lib_LIBRARIES = libast.a
libast_a_SOURCES = \
ast.h \
ast.c \
ast_accessors.h \
ast_accessors.c \
ast_pretty_print.c
libast_a_CPPFLAGS = -I$(top_srcdir)/src
libast_a_CFLAGS = -std=c99 -Werror -Wall -Wextra -Wvla -pedantic
noinst_LIBRARIES = libast.a
|