You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
288 B
13 lines
288 B
ACLOCAL_AMFLAGS = -I m4
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
STREAM = stream.c read.c write.c
|
|
IFACE = interface/reader.c \
|
|
interface/writer.c
|
|
|
|
AM_CFLAGS += -I../../include/
|
|
|
|
noinst_LTLIBRARIES = libstream.la
|
|
|
|
libstream_la_SOURCES = $(STREAM) $(IFACE)
|
|
libstream_la_CFLAGS = $(AM_CFLAGS)
|