-
Notifications
You must be signed in to change notification settings - Fork 3
/
makefile.am
35 lines (28 loc) · 1.24 KB
/
makefile.am
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
31
32
33
34
35
#******************************************************************************
# Copyright (c), Recep Aslantas. *
# *
# MIT License (MIT), http://opensource.org/licenses/MIT *
# Full license can be found in the LICENSE file *
# *
#******************************************************************************
ACLOCAL_AMFLAGS = -I m4
AM_CFLAGS = -Wall \
-std=gnu99 \
-O3 \
-Wstrict-aliasing=2 \
-fstrict-aliasing
lib_LTLIBRARIES = libjson.la
libjson_la_LDFLAGS = -no-undefined -version-info 0:1:0
jsondir=$(includedir)/json
json_HEADERS = include/json/version.h \
include/json/common.h \
include/json/json.h \
include/json/util.h \
include/json/print.h
json_calldir=$(includedir)/json/call
json_call_HEADERS = include/json/call/json.h
json_impldir=$(includedir)/json/impl
json_impl_HEADERS = include/json/impl/impl_mem.h \
include/json/impl/impl_json.h
libjson_la_SOURCES=\
src/json.c