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.
19 lines
398 B
Makefile
19 lines
398 B
Makefile
5 years ago
|
# # Process this file with automake to produce Makefile.in.
|
||
|
|
||
|
AM_CPPFLAGS = \
|
||
|
$(PTHREAD_CFLAGS) \
|
||
|
-I$(top_srcdir) \
|
||
|
-I$(top_srcdir)/src \
|
||
|
-I$(top_srcdir)/import
|
||
|
|
||
|
pkgdir = $(MOD_PATH)
|
||
|
|
||
|
pkg_LTLIBRARIES = import_framegen.la
|
||
|
|
||
|
import_framegen_la_SOURCES = import_framegen.c pink.c
|
||
|
import_framegen_la_CPPFLAGS = $(AM_CPPFLAGS)
|
||
|
import_framegen_la_LDFLAGS = -module -avoid-version
|
||
|
|
||
|
EXTRA_DIST = pink.h
|
||
|
|