mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-25 07:32:36 +01:00
written in the libwraster.la file allowing automatic linking against all the libs libwraster depends upon without specifing them again when linking programs that use libwraster. -lwraster will be enough.
22 lines
533 B
Makefile
22 lines
533 B
Makefile
## automake input file for WINGs - Tests
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
noinst_PROGRAMS = wtest wmquery wmfile testmywidget testcolorpanel
|
|
|
|
LDADD= $(top_builddir)/WINGs/libWINGs.a $(top_builddir)/wrlib/libwraster.la \
|
|
@LIBPL@
|
|
|
|
|
|
testmywidget_SOURCES = testmywidget.c mywidget.c mywidget.h
|
|
|
|
wtest_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.a
|
|
|
|
|
|
EXTRA_DIST = logo.xpm upbtn.xpm
|
|
|
|
INCLUDES = -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
|
|
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@ -DDEBUG
|
|
|
|
|