mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-25 07:32:36 +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.
33 lines
792 B
Makefile
33 lines
792 B
Makefile
## automake input file for WINGs - Tests
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
noinst_PROGRAMS = wtest wmquery wmfile testmywidget
|
|
|
|
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
@XFTLIBS@ @INTLIBS@
|
|
|
|
|
|
testmywidget_SOURCES = testmywidget.c mywidget.c mywidget.h
|
|
|
|
wtest_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
|
|
EXTRA_DIST = logo.xpm upbtn.xpm wm.html wm.png
|
|
|
|
INCLUDES = -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
|
|
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @XFTFLAGS@ @HEADER_SEARCH_PATH@ \
|
|
-DDEBUG
|
|
|
|
LIBTOOL = $(QUIET) $(SHELL) $(top_builddir)/libtool $(LIBTOOL_ARG)
|
|
|
|
.c.o:
|
|
$(QUIET)$(COMPILE) -c $<
|
|
|
|
.c.obj:
|
|
$(QUIET)$(COMPILE) -c `$(CYGPATH_W) '$<'`
|
|
|
|
.c.lo:
|
|
$(QUIET)$(LTCOMPILE) -c -o $@ $<
|