comparison Makefile.am @ 8:0c98b46eaf73 v2.0

*: update API to 2.0, big changes all APIs now use pointers to an EDL object. it is up to the user to make sure that the pointer is valid. additionally, many things have been separated into new files to make it easier to digest
author Paper <paper@paper.us.eu.org>
date Sun, 03 Mar 2024 17:56:58 -0500
parents fee08fa622e1
children
comparison
equal deleted inserted replaced
7:fee08fa622e1 8:0c98b46eaf73
1 lib_LTLIBRARIES = libedl.la 1 lib_LTLIBRARIES = libedl.la
2 libedl_la_SOURCES = src/edl.c src/str.c 2
3 noinst_HEADERS = \
4 include/datatypes.h \
5 include/str.h \
6 include/util.h
7
3 include_HEADERS = include/edl.h 8 include_HEADERS = include/edl.h
9
10 libedl_la_SOURCES = \
11 src/edl.c \
12 src/str.c \
13 src/datatypes.c \
14 src/util.c
4 15
5 AM_CPPFLAGS = -I$(srcdir)/include 16 AM_CPPFLAGS = -I$(srcdir)/include
6 ACLOCAL_AMFLAGS = -I m4 17 ACLOCAL_AMFLAGS = -I m4