You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
577 B
Makefile
36 lines
577 B
Makefile
7 years ago
|
## Sample for libndbuf automaken stuff
|
||
|
## (c) alex@vapaa.xyz
|
||
|
## Process this file with automake to produce Makefile.in
|
||
|
|
||
|
SUBDIRS = include
|
||
|
|
||
|
clean-local:
|
||
|
|
||
|
## what actually to build
|
||
|
|
||
|
AM_CPPFLAGS = \
|
||
|
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
|
||
|
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
|
||
|
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
|
||
|
-I$(srcdir)/include
|
||
|
|
||
|
AM_CFLAGS =\
|
||
|
-Wall\
|
||
|
-g
|
||
|
|
||
|
lib_LTLIBRARIES = libndbuf.la
|
||
|
|
||
|
|
||
|
libndbuf_la_SOURCES = \
|
||
|
ndbuf.c
|
||
|
|
||
|
libndbuf_la_LDFLAGS =
|
||
|
|
||
|
libndbuf_la_LIBADD =
|
||
|
|
||
|
pkgconfigdir = $(libdir)/pkgconfig
|
||
|
pkgconfig_DATA = libndbuf.pc
|
||
|
|
||
|
EXTRA_DIST = \
|
||
|
libndbuf.pc.in
|