Files
wmaker/WINGs/Extras/Makefile.am
T

31 lines
673 B
Makefile
Raw Normal View History

2000-11-12 03:29:53 +00:00
## automake input file for WINGs
2010-09-15 14:04:00 -04:00
AUTOMAKE_OPTIONS =
2000-11-12 03:29:53 +00:00
2001-01-06 22:38:07 +00:00
# is this a kluge? if so, how should i do it?
includedir = @includedir@/WINGs
2020-04-09 00:00:14 -04:00
include_HEADERS = wtableview.h wtabledelegates.h
2000-11-12 03:29:53 +00:00
2007-08-14 13:33:22 +04:00
lib_LTLIBRARIES = libExtraWINGs.la
2000-11-12 03:29:53 +00:00
2000-12-21 04:46:20 +00:00
noinst_PROGRAMS = test
2000-11-12 03:29:53 +00:00
2020-04-09 00:00:14 -04:00
EXTRA_DIST =
2000-11-12 03:29:53 +00:00
2007-08-14 13:33:22 +04:00
libExtraWINGs_la_SOURCES = \
2000-11-12 03:29:53 +00:00
wtableview.c \
2001-01-06 17:20:04 +00:00
wtabledelegates.c \
2000-11-12 03:29:53 +00:00
wtableview.h \
2020-04-09 00:00:14 -04:00
wtabledelegates.h
2000-11-12 03:29:53 +00:00
AM_CPPFLAGS = -I$(top_srcdir)/wrlib -I$(top_srcdir)/WINGs \
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@
2000-11-12 03:29:53 +00:00
2007-08-14 13:33:22 +04:00
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
$(top_builddir)/WINGs/libWUtil.la \
@XFT_LIBS@ @INTLIBS@
2000-12-21 04:46:20 +00:00
2001-01-06 17:20:04 +00:00
test_LDADD = wtableview.o wtabledelegates.o $(LDADD)