-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
44 lines (36 loc) · 1.16 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
all:
@echo "*"
@echo "* This module has been discontinued and merged into buzztrax!"
@echo "*"
@exit 1
SUBDIRS =
noinst_HEADERS =
ACLOCAL_AMFLAGS = -I m4
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libbml.pc
EXTRA_DIST = \
libbml.pc.in \
README.md TODO \
tests/sorttable.js tests/testmachine.sh
# CLEANFILES is for files generated by make
CLEANFILES = \
$(pkgconfig_DATA)
if USE_DLLWRAPPER
include $(top_srcdir)/Makefile.dllwrapper.am
endif
include $(top_srcdir)/Makefile.src.am
AUTHORS: .git/index
$(AM_V_GEN)if test -d "$(srcdir)/.git"; \
then \
( cd "$(top_srcdir)" && \
git log --no-merges --pretty=format:"%an <%ae>" . | \
sed -e 's/sourceforge.net/sf.net/' \
-e 's/\(Joseph Orbegoso Pea <[email protected]>\|trusktr <[email protected]>\)/Joe Pea <[email protected]>/' | \
sort | uniq -c | sed -e 's/^\ *//' | sort -rn | cut -d' ' -f2-; echo; \
echo 'dllwrapper based on the work of various authors of the winelib and xine projects' \
) > [email protected] && \
cmp -s $@ [email protected]; \
if test "$(?)" = "0"; then rm -f [email protected]; touch $@; else mv -f [email protected] $@; fi \
|| ( rm -f [email protected] ; \
echo Failed to generate $@ >&2 ); \
fi