Files
wmaker/WINGs/Extras/Makefile.am
T

35 lines
690 B
Makefile
Raw Normal View History

2000-11-12 03:29:53 +00:00
## automake input file for WINGs
AUTOMAKE_OPTIONS = no-dependencies
2001-01-06 22:38:07 +00:00
# is this a kluge? if so, how should i do it?
includedir = @includedir@/WINGs
2001-01-06 17:20:04 +00:00
include_HEADERS = wtableview.h wtabledelegates.h
2000-11-12 03:29:53 +00:00
lib_LIBRARIES = libExtraWINGs.a
2000-12-21 04:46:20 +00:00
noinst_PROGRAMS = test
2000-11-12 03:29:53 +00:00
EXTRA_DIST =
libExtraWINGs_a_SOURCES = \
wtableview.c \
2001-01-06 17:20:04 +00:00
wtabledelegates.c \
2000-11-12 03:29:53 +00:00
wtableview.h \
2001-01-06 17:20:04 +00:00
wtabledelegates.h
2000-11-12 03:29:53 +00:00
AM_CFLAGS = @NOSTRICTALIASING@
2000-11-12 03:29:53 +00:00
INCLUDES = -I$(top_srcdir)/wrlib -I$(top_srcdir)/WINGs \
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@ -DDEBUG
LDADD= $(top_builddir)/WINGs/libWINGs.a $(top_builddir)/wrlib/libwraster.la \
@XFTLIBS@ @INTLIBS@
2000-12-21 04:46:20 +00:00
2001-01-06 17:20:04 +00:00
test_LDADD = wtableview.o wtabledelegates.o $(LDADD)
2000-12-21 04:46:20 +00:00