Mercurial > libedl
annotate Makefile.am @ 13:41b74137e201
include: make header guards sane
double underscores are reserved to the implementation by
the C standard
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 03 Apr 2024 20:48:51 -0400 |
parents | 0c98b46eaf73 |
children |
rev | line source |
---|---|
2
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
1 lib_LTLIBRARIES = libedl.la |
8
0c98b46eaf73
*: update API to 2.0, big changes
Paper <paper@paper.us.eu.org>
parents:
7
diff
changeset
|
2 |
0c98b46eaf73
*: update API to 2.0, big changes
Paper <paper@paper.us.eu.org>
parents:
7
diff
changeset
|
3 noinst_HEADERS = \ |
0c98b46eaf73
*: update API to 2.0, big changes
Paper <paper@paper.us.eu.org>
parents:
7
diff
changeset
|
4 include/datatypes.h \ |
0c98b46eaf73
*: update API to 2.0, big changes
Paper <paper@paper.us.eu.org>
parents:
7
diff
changeset
|
5 include/str.h \ |
0c98b46eaf73
*: update API to 2.0, big changes
Paper <paper@paper.us.eu.org>
parents:
7
diff
changeset
|
6 include/util.h |
0c98b46eaf73
*: update API to 2.0, big changes
Paper <paper@paper.us.eu.org>
parents:
7
diff
changeset
|
7 |
7
fee08fa622e1
automake: don't expose private strings API
Paper <mrpapersonic@gmail.com>
parents:
4
diff
changeset
|
8 include_HEADERS = include/edl.h |
2
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
9 |
8
0c98b46eaf73
*: update API to 2.0, big changes
Paper <paper@paper.us.eu.org>
parents:
7
diff
changeset
|
10 libedl_la_SOURCES = \ |
0c98b46eaf73
*: update API to 2.0, big changes
Paper <paper@paper.us.eu.org>
parents:
7
diff
changeset
|
11 src/edl.c \ |
0c98b46eaf73
*: update API to 2.0, big changes
Paper <paper@paper.us.eu.org>
parents:
7
diff
changeset
|
12 src/str.c \ |
0c98b46eaf73
*: update API to 2.0, big changes
Paper <paper@paper.us.eu.org>
parents:
7
diff
changeset
|
13 src/datatypes.c \ |
0c98b46eaf73
*: update API to 2.0, big changes
Paper <paper@paper.us.eu.org>
parents:
7
diff
changeset
|
14 src/util.c |
0c98b46eaf73
*: update API to 2.0, big changes
Paper <paper@paper.us.eu.org>
parents:
7
diff
changeset
|
15 |
2
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
16 AM_CPPFLAGS = -I$(srcdir)/include |
d00bc412900e
*: fix up lots of stuff and make the thing actually usable
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
17 ACLOCAL_AMFLAGS = -I m4 |