initial commit
[profile/ivi/xorg-x11-xinit.git] / Makefile.am
1
2 #  Copyright 2005  Red Hat, Inc.
3
4 #  Permission to use, copy, modify, distribute, and sell this software and its
5 #  documentation for any purpose is hereby granted without fee, provided that
6 #  the above copyright notice appear in all copies and that both that
7 #  copyright notice and this permission notice appear in supporting
8 #  documentation, and that the name of Red Hat not be used in
9 #  advertising or publicity pertaining to distribution of the software without
10 #  specific, written prior permission.  Red Hat makes no
11 #  representations about the suitability of this software for any purpose.  It
12 #  is provided "as is" without express or implied warranty.
13
14 #  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 #  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 #  EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 #  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 #  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 #  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20 #  PERFORMANCE OF THIS SOFTWARE.
21
22 XINITDIR = $(libdir)/X11/xinit
23
24 bin_PROGRAMS = xinit
25 #bin_SCRIPTS = startx
26 bin_SCRIPTS = 
27
28 xinit_CFLAGS = $(XINIT_CFLAGS) -DXINITDIR=\"$(XINITDIR)\" -DBINDIR=\"$(bindir)\"
29 xinit_LDADD = $(XINIT_LIBS)
30
31 xinit_SOURCES = \
32         xinit.c
33
34 appmandir = $(APP_MAN_DIR)
35
36 appman_PRE = \
37         startx.man \
38         xinit.man
39
40 appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@)
41
42 include $(top_srcdir)/cpprules.in
43
44 xinitrcdir = $(XINITDIR)
45
46 PROGCPPDEFS = \
47         -DXRDB=@XRDB@ \
48         -DXMODMAP=@XMODMAP@ \
49         -DTWM=@TWM@ \
50         -DXCLOCK=@XCLOCK@ \
51         -DXTERM=@XTERM@ \
52         -DXSERVER=@XSERVER@ \
53         -DXAUTH=@XAUTH@ \
54         -DXINIT=@XINIT@
55
56 CPP_FILES_FLAGS = \
57         -DXINITDIR=$(XINITDIR) $(PROGCPPDEFS) -DLIBDIR=$(libdir) \
58         -DSHELL_CMD=$(SHELL_CMD) $(STARTX_COOKIE_FLAGS) \
59         -D__libexecdir__="$(libexecdir)" \
60         -D__bindir__="$(bindir)"
61
62 if LAUNCHD
63 launchagents_PRE = org.x.startx.plist.cpp
64 launchagents_DATA = $(launchagents_PRE:plist.cpp=plist)
65
66 SUBDIRS = privileged_startx
67 endif
68
69 DIST_SUBDIRS = privileged_startx
70
71 xinitrc: xinitrc.cpp Makefile
72 startx: startx.cpp Makefile
73
74 xinitrc_DATA = xinitrc
75
76 CLEANFILES = xinitrc startx $(appman_DATA) $(launchagents_DATA)
77
78 EXTRA_DIST = xinitrc.cpp startx.cpp org.x.startx.plist.cpp $(appman_PRE)        \
79                 startx.cmd xinitrc.cmd xinit.def ChangeLog autogen.sh
80
81 .PHONY: ChangeLog
82
83 ChangeLog:
84         (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2)
85
86 dist-hook: ChangeLog