-
Notifications
You must be signed in to change notification settings - Fork 45
/
Makefile.am
55 lines (46 loc) · 1.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
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = src demo # test (does not build) # docs (overflows pdflatex)
DIST_SUBDIRS = $(SUBDIRS) msvc
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = ftgl.pc
DISTCLEANFILES = ftgl.pc
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure config.h.in config.h.in~
EXTRA_DIST = \
AUTHORS \
BUGS \
COPYING \
ChangeLog \
INSTALL \
NEWS \
README \
TODO \
autogen.sh \
configure.ac \
ftgl.pc.in \
m4/compiler.m4 \
m4/cxx.m4 \
m4/font.m4 \
m4/freetype2.m4 \
m4/func.m4 \
m4/gl.m4 \
m4/glut.m4 \
m4/pkg.m4 \
$(NULL)
# Print out an informative summary.
all-local:
@$(ECHO) "Done."
@$(ECHO)
@if test "x$(MAKECMDGOALS)" = "xall-am" -o "x$(.TARGETS)" = "xall-am" -o "x$(MAKECMDGOALS)" = "x" -o "x$(.TARGETS)" = "x" ; then \
$(ECHO) "---" ;\
$(ECHO) "Run 'make install' to begin installation into $(prefix)" ;\
fi
@$(ECHO)
maintainer-clean-local:
-rm -rf .auto
# Upload documentation
DOC = docs/html docs/latex/ftgl.pdf
HOST = ftgl.sf.net
DIR = /home/groups/f/ft/ftgl/htdocs/
upload-doc:
tar cz $(DOC) | ssh $(HOST) "cd $(DIR) && rm -Rf $(DOC) && tar xvz"
NULL =