diff options
author | marha <marha@users.sourceforge.net> | 2009-11-06 11:03:40 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-11-06 11:03:40 +0000 |
commit | 08cb4425442ca65ec28d6a2f023f885e35a7f0ed (patch) | |
tree | a9061a472d247bce27d7fb6c700c5b7e2755d036 /libXaw/Makefile.am | |
parent | ccdb20929567c70c1bbdd5df275ca7bea5c747a7 (diff) | |
parent | ace7902333b6f61aab5a6035dbcb222763bff186 (diff) | |
download | vcxsrv-08cb4425442ca65ec28d6a2f023f885e35a7f0ed.tar.gz vcxsrv-08cb4425442ca65ec28d6a2f023f885e35a7f0ed.tar.bz2 vcxsrv-08cb4425442ca65ec28d6a2f023f885e35a7f0ed.zip |
Added libXaw
Diffstat (limited to 'libXaw/Makefile.am')
-rw-r--r-- | libXaw/Makefile.am | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/libXaw/Makefile.am b/libXaw/Makefile.am new file mode 100644 index 000000000..16951fea5 --- /dev/null +++ b/libXaw/Makefile.am @@ -0,0 +1,47 @@ +SUBDIRS = include src man spec + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = + +if BUILD_XAW6 + +pkgconfig_DATA += xaw6.pc +if PLATFORM_DARWIN +DEFAULT_LIB = libXaw.6.@LIBEXT@ +else +DEFAULT_LIB = libXaw6.@LIBEXT@ +endif + +endif + +if BUILD_XAW7 + +pkgconfig_DATA += xaw7.pc +if PLATFORM_DARWIN +DEFAULT_LIB = libXaw.7.@LIBEXT@ +else +DEFAULT_LIB = libXaw7.@LIBEXT@ +endif + +endif + +EXTRA_DIST = xaw6.pc.in \ + xaw7.pc.in \ + autogen.sh \ + old-doc/Changelog \ + old-doc/CHANGES \ + ChangeLog + +if !PLATFORM_WIN32 +install-exec-hook: + cd $(DESTDIR)$(libdir) && rm -f libXaw.@LIBEXT@ && ln -s $(DEFAULT_LIB) libXaw.@LIBEXT@ +endif + +MAINTAINERCLEANFILES=ChangeLog + +.PHONY: ChangeLog + +ChangeLog: + $(CHANGELOG_CMD) + +dist-hook: ChangeLog |