24 lines
498 B
Makefile
24 lines
498 B
Makefile
|
include $(top_srcdir)/Makefile.decl
|
||
|
|
||
|
column_lib_LTLIBRARIES = libvncolumn.la
|
||
|
column_include_HEADERS = \
|
||
|
column.h \
|
||
|
vn-column-check.h \
|
||
|
vn-column-combo.h \
|
||
|
vn-column-entry.h \
|
||
|
vn-column-image.h \
|
||
|
vn-column-spin.h
|
||
|
|
||
|
AM_CPPFLAGS = \
|
||
|
-D_IMAGE_DIR=\"$(vn_imagedir)\" \
|
||
|
-I$(top_srcdir) \
|
||
|
$(gtk_CFLAGS)
|
||
|
libvncolumn_la_LIBADD = $(gtk_LIBS)
|
||
|
libvncolumn_la_SOURCES = \
|
||
|
$(column_include_HEADERS) \
|
||
|
vn-column-check.c \
|
||
|
vn-column-combo.c \
|
||
|
vn-column-entry.c \
|
||
|
vn-column-image.c \
|
||
|
vn-column-spin.c
|