mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 15:12:32 +01:00
- The throwing out of autogen.sh in favor of autoreconf comes from http://www.gnu.org/software/automake/manual/autoconf/autoreconf-Invocation.html#autoreconf-Invocation - 'think that instead of the exit, some better way should be put in to control whether or not to automatically run configure. Or maybe just don't even run it.
48 lines
967 B
Makefile
48 lines
967 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_LTLIBRARIES = libExtraWINGs.la
|
|
|
|
noinst_PROGRAMS = test
|
|
|
|
EXTRA_DIST =
|
|
|
|
libExtraWINGs_a_AR = $(QUIET_AR) $(AR) $(ARFLAGS)
|
|
|
|
libExtraWINGs_la_SOURCES = \
|
|
wtableview.c \
|
|
wtabledelegates.c \
|
|
wtableview.h \
|
|
wtabledelegates.h
|
|
|
|
AM_CFLAGS = @NOSTRICTALIASING@
|
|
|
|
INCLUDES = -I$(top_srcdir)/wrlib -I$(top_srcdir)/WINGs \
|
|
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@ -DDEBUG
|
|
|
|
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
@XFTLIBS@ @INTLIBS@
|
|
|
|
test_LDADD = wtableview.o wtabledelegates.o $(LDADD)
|
|
|
|
LIBTOOL = $(SHELL) $(top_builddir)/libtool $(LIBTOOL_ARG)
|
|
|
|
.c.o:
|
|
$(QUIET)$(COMPILE) -c $<
|
|
|
|
.c.obj:
|
|
$(QUIET)$(COMPILE) -c `$(CYGPATH_W) '$<'`
|
|
|
|
.c.lo:
|
|
$(QUIET)$(LTCOMPILE) -c -o $@ $<
|