forked from acaudwell/Gource
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
68 lines (60 loc) · 2.09 KB
/
Makefile.am
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
ACLOCAL_AMFLAGS = -I m4
bin_PROGRAMS = gource
gource_SOURCES = \
src/action.cpp src/action.h \
src/apache.cpp src/apache.h \
src/bzr.cpp src/bzr.h \
src/commitlog.cpp src/commitlog.h \
src/core/bounds.h \
src/core/camera.cpp src/core/camera.h \
src/core/conffile.cpp src/core/conffile.h \
src/core/display.cpp src/core/display.h \
src/core/frustum.cpp src/core/frustum.h \
src/core/fxfont.cpp src/core/fxfont.h \
src/core/logger.cpp src/core/logger.h \
src/core/mousecursor.cpp src/core/mousecursor.h \
src/core/pi.h \
src/core/plane.cpp src/core/plane.h \
src/core/ppm.cpp src/core/ppm.h \
src/core/quadtree.cpp src/core/quadtree.h \
src/core/regex.cpp src/core/regex.h \
src/core/resource.cpp src/core/resource.h \
src/core/sdlapp.cpp src/core/sdlapp.h \
src/core/seeklog.cpp src/core/seeklog.h \
src/core/settings.cpp src/core/settings.h \
src/core/stringhash.cpp src/core/stringhash.h \
src/core/texture.cpp src/core/texture.h \
src/core/utf8/checked.h \
src/core/utf8/core.h \
src/core/utf8/unchecked.h \
src/core/utf8/utf8.h \
src/core/vectors.h \
src/custom.cpp src/custom.h \
src/cvs-exp.cpp src/cvs-exp.h \
src/dirnode.cpp src/dirnode.h \
src/file.cpp src/file.h \
src/git.cpp src/git.h \
src/gitraw.cpp src/gitraw.h \
src/gource.cpp src/gource.h \
src/gource_shell.cpp src/gource_shell.h \
src/gource_settings.cpp src/gource_settings.h \
src/hg.cpp src/hg.h \
src/main.cpp src/main.h \
src/pawn.cpp src/pawn.h \
src/slider.cpp src/slider.h \
src/spline.cpp src/spline.h \
src/user.cpp src/user.h \
src/zoomcamera.cpp src/zoomcamera.h
CPPFLAGS = -DSDLAPP_RESOURCE_DIR=\"$(pkgdatadir)\"
dist_pkgdata_DATA = data/beam.png data/bloom.tga data/bloom_alpha.tga data/cursor.png data/file.png data/no_photo.png data/gource.style
install-data-hook:
mkdir -p -m 755 ${DESTDIR}/$(mandir)/man1
gzip -cf9 data/gource.1 > $(DESTDIR)$(mandir)/man1/gource.1.gz
uninstall-hook:
rm -f $(DESTDIR)$(mandir)/man1/gource.1.gz
if FONTDIR
CPPFLAGS += -DSDLAPP_FONT_DIR=\"$(gourcefontdir)\"
else
fontsdir = $(pkgdatadir)/fonts
dist_fonts_DATA = data/fonts/README data/fonts/FreeSans.ttf
endif