Mercurial > libedl
annotate Makefile.am @ 12:0cc2555db371
*: make our string functions not stupid
strncat() made everything slow!
new addition internally: an EDL_header structure to make things
not stupid. if we were using C++ it wouldn't really be necessary,
but alas :)
| author | Paper <paper@paper.us.eu.org> |
|---|---|
| date | Wed, 27 Mar 2024 13:38:30 -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 |
