mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 23:22:30 +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.
86 lines
2.1 KiB
Makefile
86 lines
2.1 KiB
Makefile
SUBDIRS = po
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@
|
|
|
|
bin_PROGRAMS = wxcopy wxpaste wdwrite wdread getstyle setstyle convertfonts \
|
|
seticons geticonset wmsetbg wmagnify wmgenmenu
|
|
|
|
bin_SCRIPTS = wmaker.inst wm-oldmenu2new wkdemenu.pl
|
|
|
|
EXTRA_DIST = wmaker.inst.in bughint wm-oldmenu2new directjpeg.c wkdemenu.pl
|
|
|
|
AM_CPPFLAGS = -DLOCALEDIR=\"$(NLSDIR)\"
|
|
|
|
INCLUDES = $(DFLAGS) -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib \
|
|
@HEADER_SEARCH_PATH@ \
|
|
-DETCDIR=\"sysconfdir\" -DDATADIR=\"pkgdatadir\"
|
|
|
|
liblist= @LIBRARY_SEARCH_PATH@ @INTLIBS@
|
|
|
|
wdwrite_LDADD = $(top_builddir)/WINGs/libWUtil.la $(liblist)
|
|
|
|
wdread_LDADD = $(top_builddir)/WINGs/libWUtil.la $(liblist)
|
|
|
|
wxcopy_LDADD = @XLFLAGS@ @XLIBS@
|
|
|
|
wxpaste_LDADD = @XLFLAGS@ @XLIBS@
|
|
|
|
getstyle_LDADD = $(top_builddir)/WINGs/libWUtil.la $(liblist)
|
|
|
|
getstyle_SOURCES = getstyle.c fontconv.c
|
|
|
|
setstyle_LDADD = \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
@XLFLAGS@ @XLIBS@ $(liblist)
|
|
|
|
setstyle_SOURCES = setstyle.c fontconv.c
|
|
|
|
convertfonts_LDADD = $(top_builddir)/WINGs/libWUtil.la $(liblist)
|
|
|
|
convertfonts_SOURCES = convertfonts.c fontconv.c
|
|
|
|
seticons_LDADD= $(top_builddir)/WINGs/libWUtil.la $(liblist)
|
|
|
|
geticonset_LDADD= $(top_builddir)/WINGs/libWUtil.la $(liblist)
|
|
|
|
wmagnify_LDADD = \
|
|
$(top_builddir)/WINGs/libWINGs.la \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
$(top_builddir)/wrlib/libwraster.la \
|
|
@XFTLIBS@ @INTLIBS@
|
|
|
|
wmsetbg_LDADD = \
|
|
$(top_builddir)/WINGs/libWINGs.la \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
$(top_builddir)/wrlib/libwraster.la \
|
|
@XLFLAGS@ @XLIBS@ @XFTLIBS@ @INTLIBS@
|
|
|
|
wmgenmenu_LDADD = \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
@INTLIBS@
|
|
|
|
CLEANFILES = wmaker.inst
|
|
|
|
wmaker.inst: $(srcdir)/wmaker.inst.in ./Makefile
|
|
@-rm -f wmaker.inst
|
|
@sed -e "s|#pkgdatadir#|$(pkgdatadir)|" \
|
|
-e "s|#sysconfdir#|$(sysconfdir)/WindowMaker|" \
|
|
-e "s|#version#|$(VERSION)|" \
|
|
-e "s|#bindir#|$(bindir)|" \
|
|
$(srcdir)/wmaker.inst.in >wmaker.inst
|
|
|
|
chmod 755 wmaker.inst
|
|
|
|
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 $@ $<
|