mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 15:12:32 +01:00
This patch modifies the linking of the WINGs libraries to create a shared library. wmaker used to do this, but it was dropped around wmaker-0.90/0.91. The shared .so library is needed when compiling and running the wdm display manager and any other programs which link to libWINGs. Submitted by: Gilbert Ashley Origin: ALT/Sisyphus Linux
33 lines
790 B
Makefile
33 lines
790 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_srcdir)/libtool $(LIBTOOL_ARG)
|
|
|
|
.c.o:
|
|
$(QUIET)$(COMPILE) -c $<
|
|
|
|
.c.obj:
|
|
$(QUIET)$(COMPILE) -c `$(CYGPATH_W) '$<'`
|
|
|
|
.c.lo:
|
|
$(QUIET)$(LTCOMPILE) -c -o $@ $<
|