-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathMakefile.am
More file actions
43 lines (36 loc) · 1.22 KB
/
Copy pathMakefile.am
File metadata and controls
43 lines (36 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
AUX_DIST_GEN = \
$(ac_aux_dir)/install-sh \
$(ac_aux_dir)/missing
# The `make distcheck` command does a simulated install to check that
# `make install` works correctly; we need to pick a different path for
# the high scores directory, otherwise we will likely get permissions
# errors with the default path:
AM_DISTCHECK_CONFIGURE_FLAGS = \
"--with-hiscores-path=$$dc_install_base/hiscores"
DOC_FILES= \
COPYING.md \
FAQ.md \
NEWS.md \
README.md \
PHILOSOPHY.md
missionsdir = $(docdir)/examples
missions_DATA = \
maps/README.md \
maps/bogey.sop \
maps/doghouse.sop \
maps/empty.sop \
maps/new_targets.sop \
maps/original.sop \
maps/sopwith1.sop \
maps/tank_strike.sop \
maps/title.sop \
maps/triplane.sop
EXTRA_DIST = $(AUX_DIST_GEN) $(DOC_FILES) $(missions_DATA) \
.clang-format \
embuild.sh \
icon.png
MAINTAINERCLEANFILES = $(AUX_DIST_GEN)
docdir=$(prefix)/share/doc/@PACKAGE@
SUBDIRS=src doc pkg
format:
clang-format -i src/*.[ch] src/sdl/*.[ch]