Update upstream source from tag 'upstream/3.1.1'
[xfishtank.git] / src / Makefile.am
CommitLineData
4c1bd65b
MG
1# -copyright-
2#-# Copyright © 2021 Eric Bina, Dave Black, TJ Phan,
3#-# Vincent Renardias, Willem Vermin
4#-#
5#-# Permission is hereby granted, free of charge, to any person
6#-# obtaining a copy of this software and associated documentation
7#-# files (the “Software”), to deal in the Software without
8#-# restriction, including without limitation the rights to use,
9#-# copy, modify, merge, publish, distribute, sublicense, and/or
10#-# sell copies of the Software, and to permit persons to whom
11#-# the Software is furnished to do so, subject to the following
12#-# conditions:
13#-#
14#-# The above copyright notice and this permission notice shall
15#-# be included in all copies or substantial portions of the Software.
16#-#
17#-# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
18#-# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
19#-# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20#-# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21#-# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22#-# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23#-# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24#-# OTHER DEALINGS IN THE SOFTWARE.
25#-#
26games_PROGRAMS = xfishtank
27gamesdir = $(exec_prefix)/games
28nodist_xfishtank_SOURCES = ui_xml.h
29BUILT_SOURCES = ui_xml.h tarfile.inc
30
31tarfile = $(top_builddir)/$(PACKAGE_TARNAME)-$(VERSION).tar.gz
32
33$(tarfile):
34 echo "No tarfile available during build." > $@
35 echo "Run 'configure' or 'make dist' to make one, and run 'make' again." >> $@
36
37if MAKESELFREP
38tarfile.inc: $(tarfile)
39 export CC="$(CC)"; export CFLAGS="$(CFLAGS)"; $(TOASCII) < $(tarfile) > $@
40else
41tarfile.inc:
42 echo "No selfrep compiled in" | $(TOASCII) > $@
43endif
44
45
46EXTRA_DIST = FishList xfishtank.png xfishtank.desktop gen_ui_xml.sh ui.xml fishes \
47 tocc.sh toascii.sh
48
49TOCC = $(top_srcdir)/src/tocc.sh
50TOASCII = $(top_srcdir)/src/toascii.sh
51
52xfishtank_SOURCES = main.c xfishtank.h fishes.h \
53 bubbles.h compact.h vroot.h \
54 wmctrl.c wmctrl.h \
55 transwindow.c transwindow.h \
56 utils.c utils.h \
57 ixpm.c ixpm.h \
58 ui.c ui.h \
59 debug.h test1.sh
60
61
62xfishtank_CPPFLAGS = $(GTK_CFLAGS) $(X11_CFLAGS) -rdynamic
63xfishtank_LDADD = $(GTK_LIBS) $(X11_LIBS)
64
65if MAKESELFREP
66 xfishtank_CPPFLAGS += -DSELFREP
67endif
68
69TESTS = test1.sh
70
71changelog.inc: $(top_srcdir)/ChangeLog $(TOCC)
72 $(TOCC) < $(top_srcdir)/ChangeLog > $@
73
74xfishtank-main.$(OBJEXT): changelog.inc tarfile.inc
75
76
77desktopdir = $(datadir)/applications
78desktop_DATA = xfishtank.desktop
79
80appicondir=$(datadir)/pixmaps
81appicon_DATA=xfishtank.png
82
83ui_xml.h: ui.xml
84 @echo "Creating $@ from $<"
85 $(top_srcdir)/src/gen_ui_xml.sh $(top_srcdir)
86
87CLEANFILES = ui_xml.h changelog.inc tarfile.inc toascii.c toascii
This page took 0.014819 seconds and 4 git commands to generate.