mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 15:12:32 +01:00
104 lines
1.7 KiB
Makefile
104 lines
1.7 KiB
Makefile
## automake input file for WINGs
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
SUBDIRS = Resources
|
|
|
|
|
|
LIBLIST= $(top_builddir)/wrlib/libwraster.la\
|
|
@LIBRARY_SEARCH_PATH@ @GFXLIBS@ @XLIBS@ \
|
|
-lm @LIBPL@
|
|
|
|
|
|
#lib_LTLIBRARIES = libWINGs.la
|
|
|
|
lib_LIBRARIES = libWINGs.a
|
|
|
|
#libWINGs_la_LDFLAGS = -version-info 1:1:0
|
|
|
|
include_HEADERS = WINGs.h WUtil.h WINGsP.h
|
|
|
|
noinst_PROGRAMS = wtest wmquery wmfile fontl testmywidget testcolorpanel \
|
|
testnot
|
|
|
|
testmywidget_SOURCES = testmywidget.c mywidget.c mywidget.h
|
|
|
|
testmywidget_LDADD = libWINGs.a $(LIBLIST)
|
|
|
|
fontl_SOURCES = fontl.c
|
|
|
|
fontl_LDADD = libWINGs.a $(LIBLIST)
|
|
|
|
wtest_SOURCES = wtest.c
|
|
|
|
wtest_LDADD = libWINGs.a $(LIBLIST)
|
|
|
|
wtest_DEPENDENCIES = libWINGs.a
|
|
|
|
wmfile_SOURCES = wmfile.c
|
|
|
|
wmfile_LDADD = libWINGs.a $(LIBLIST)
|
|
|
|
testcolorpanel_SOURCES = testcolorpanel.c
|
|
|
|
testcolorpanel_LDADD = libWINGs.a $(LIBLIST)
|
|
|
|
testnot_SOURCES = testnot.c
|
|
|
|
testnot_LDADD = libWINGs.a $(LIBLIST)
|
|
|
|
|
|
wmquery_SOURCES = wmquery.c
|
|
|
|
wmquery_LDADD = libWINGs.a $(LIBLIST)
|
|
|
|
|
|
EXTRA_DIST = logo.xpm
|
|
|
|
# wbutton.c
|
|
libWINGs_a_SOURCES = \
|
|
WINGs.h \
|
|
WINGsP.h \
|
|
configuration.c \
|
|
llist.h \
|
|
llist.c \
|
|
international.c \
|
|
notification.c \
|
|
selection.c \
|
|
userdefaults.c \
|
|
wapplication.c \
|
|
wbrowser.c \
|
|
wbutton.c \
|
|
wcolor.c \
|
|
wcolorpanel.c \
|
|
wcolorwell.c \
|
|
wevent.c \
|
|
wfilepanel.c \
|
|
wframe.c \
|
|
wfont.c \
|
|
wfontpanel.c \
|
|
widgets.c \
|
|
wlabel.c \
|
|
wlist.c \
|
|
wmisc.c \
|
|
wpanel.c \
|
|
wpixmap.c \
|
|
wpopupbutton.c \
|
|
wscroller.c \
|
|
wscrollview.c \
|
|
wslider.c \
|
|
wsplitview.c \
|
|
wtextfield.c \
|
|
wwindow.c \
|
|
wview.c \
|
|
error.c \
|
|
findfile.c \
|
|
hashtable.c \
|
|
memory.c \
|
|
usleep.c
|
|
|
|
|
|
INCLUDES = -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
|
|
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@ -DDEBUG
|
|
|