Files
wmaker/util/Makefile.am
T

75 lines
2.1 KiB
Makefile
Raw Normal View History

1998-09-29 22:36:29 +00:00
AUTOMAKE_OPTIONS = no-dependencies
pkgdatadir = $(datadir)/@PACKAGE@
2001-02-08 22:43:00 +00:00
bin_PROGRAMS = wxcopy wxpaste wdwrite wdread getstyle setstyle seticons geticonset wmsetbg wmsetup wmagnify
1998-09-29 22:36:29 +00:00
2001-09-04 20:03:58 +00:00
bin_SCRIPTS = wmaker.inst wm-oldmenu2new wsetfont wmchlocale wkdemenu.pl\
wcopy wpaste
1998-09-29 22:36:29 +00:00
1999-03-09 14:58:01 +00:00
EXTRA_DIST = wmaker.inst.in bughint wm-oldmenu2new wsetfont directjpeg.c \
2001-10-05 00:34:13 +00:00
wkdemenu.pl wmchlocale.in wcopy wpaste
1998-09-29 22:36:29 +00:00
2000-04-09 23:55:46 +00:00
INCLUDES = $(DFLAGS) -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib \
2000-05-22 03:09:20 +00:00
@HEADER_SEARCH_PATH@ \
-DETCDIR=\"sysconfdir\" -DDATADIR=\"pkgdatadir\"
1998-09-29 22:36:29 +00:00
# X_EXTRA_LIBS is for libproplist in systems that need -lsocket
# remove after we require lPL 0.10.2 which automatically resolves its
# library dependancies using the libPropList.la file
liblist= @LIBRARY_SEARCH_PATH@ @X_EXTRA_LIBS@ @INTLIBS@
1998-10-21 14:43:47 +00:00
wdwrite_LDADD = $(top_builddir)/WINGs/libWUtil.a $(liblist)
1998-09-29 22:36:29 +00:00
wdread_LDADD = $(top_builddir)/WINGs/libWUtil.a $(liblist)
2001-02-08 22:43:00 +00:00
1998-09-29 22:36:29 +00:00
wxcopy_LDADD = @XLFLAGS@ @XLIBS@
1999-04-03 03:51:17 +00:00
wxpaste_LDADD = @XLFLAGS@ @XLIBS@
1998-09-29 22:36:29 +00:00
getstyle_LDADD = $(top_builddir)/WINGs/libWUtil.a $(liblist)
1998-09-29 22:36:29 +00:00
setstyle_LDADD = \
$(top_builddir)/WINGs/libWUtil.a \
@XLFLAGS@ @XLIBS@ $(liblist)
1998-09-29 22:36:29 +00:00
seticons_LDADD= $(top_builddir)/WINGs/libWUtil.a $(liblist)
1998-09-29 22:36:29 +00:00
geticonset_LDADD= $(top_builddir)/WINGs/libWUtil.a $(liblist)
1998-09-29 22:36:29 +00:00
2000-05-22 03:09:20 +00:00
wmagnify_LDADD = \
1999-01-06 15:22:33 +00:00
$(top_builddir)/WINGs/libWINGs.a \
1999-01-25 19:06:50 +00:00
$(top_builddir)/wrlib/libwraster.la \
@INTLIBS@ @DLLIBS@
1998-09-29 22:36:29 +00:00
2000-05-22 03:09:20 +00:00
wmsetup_LDADD = \
$(top_builddir)/WINGs/libWINGs.a \
$(top_builddir)/wrlib/libwraster.la \
@INTLIBS@ @DLLIBS@
1998-09-29 22:36:29 +00:00
2000-05-22 03:09:20 +00:00
wmsetbg_LDADD = \
$(top_builddir)/WINGs/libWINGs.a \
$(top_builddir)/wrlib/libwraster.la \
@INTLIBS@ @DLLIBS@
1998-09-29 22:36:29 +00:00
2001-02-08 22:43:00 +00:00
CLEANFILES = wmaker.inst wmchlocale
1998-09-29 22:36:29 +00:00
1998-11-23 11:32:19 +00:00
wmaker.inst: $(srcdir)/wmaker.inst.in ./Makefile
1998-09-29 22:36:29 +00:00
-rm -f wmaker.inst
sed -e "s|#pkgdatadir#|$(pkgdatadir)|" \
-e "s|#sysconfdir#|$(sysconfdir)/WindowMaker|" \
-e "s|#version#|$(VERSION)|" \
-e "s|#bindir#|$(bindir)|" \
-e "s|#LITE#|@LITE@|" \
1998-09-29 22:36:29 +00:00
$(srcdir)/wmaker.inst.in >wmaker.inst
chmod 755 wmaker.inst
2001-02-08 22:43:00 +00:00
wmchlocale: $(srcdir)/wmchlocale.in ./Makefile
-rm -f wmchlocale
sed -e "s|#pkgdatadir#|$(pkgdatadir)|" $(srcdir)/wmchlocale.in >wmchlocale
chmod 755 wmchlocale
1998-09-29 22:36:29 +00:00