diff options
author | marha <marha@users.sourceforge.net> | 2012-01-23 16:07:44 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-01-23 16:07:44 +0100 |
commit | e960645b7f8f6d257df2a56c57ccc49e2070319d (patch) | |
tree | 223b1cc6415b06a7c595081d20468b1f496dc103 /apps/xhost/Makefile.am | |
parent | 3133b5e387a167d55f2510ca1ea5c201837e5ae0 (diff) | |
download | vcxsrv-e960645b7f8f6d257df2a56c57ccc49e2070319d.tar.gz vcxsrv-e960645b7f8f6d257df2a56c57ccc49e2070319d.tar.bz2 vcxsrv-e960645b7f8f6d257df2a56c57ccc49e2070319d.zip |
Added xhost-1.0.4
Diffstat (limited to 'apps/xhost/Makefile.am')
-rw-r--r-- | apps/xhost/Makefile.am | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/apps/xhost/Makefile.am b/apps/xhost/Makefile.am new file mode 100644 index 000000000..2c67d2655 --- /dev/null +++ b/apps/xhost/Makefile.am @@ -0,0 +1,31 @@ +bin_PROGRAMS = xhost + +xhost_SOURCES = xhost.c + +AM_CFLAGS = $(CWARNFLAGS) $(XHOST_CFLAGS) +xhost_LDADD = $(XHOST_LIBS) + +appman_PRE = xhost.man + +appmandir = $(APP_MAN_DIR) + +appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) + +EXTRA_DIST = $(appman_PRE) +MAINTAINERCLEANFILES = ChangeLog INSTALL +CLEANFILES = $(appman_DATA) + +.PHONY: ChangeLog INSTALL + +INSTALL: + $(INSTALL_CMD) + +ChangeLog: + $(CHANGELOG_CMD) + +dist-hook: ChangeLog INSTALL + +SUFFIXES = .$(APP_MAN_SUFFIX) .man + +.man.$(APP_MAN_SUFFIX): + $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ |