mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-21 05:18:06 +01:00
34 lines
659 B
Makefile
34 lines
659 B
Makefile
## automake input file for WINGs
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
|
|
|
|
# is this a kluge? if so, how should i do it?
|
|
includedir = @includedir@/WINGs
|
|
|
|
include_HEADERS = wtableview.h wtabledelegates.h
|
|
|
|
|
|
lib_LIBRARIES = libExtraWINGs.a
|
|
|
|
noinst_PROGRAMS = test
|
|
|
|
EXTRA_DIST =
|
|
|
|
libExtraWINGs_a_SOURCES = \
|
|
wtableview.c \
|
|
wtabledelegates.c \
|
|
wtableview.h \
|
|
wtabledelegates.h
|
|
|
|
|
|
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@
|
|
|
|
test_LDADD = wtableview.o wtabledelegates.o $(LDADD)
|
|
|