-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
103 lines (86 loc) · 2.43 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
AM_INSTALLCHECK_STD_OPTIONS_EXEMPT =
BUILT_SOURCES =
CLEANFILES =
EXTRA_DIST =
man_MANS =
bin_PROGRAMS =
check_PROGRAMS =
noinst_PROGRAMS =
EXTRA_PROGRAMS =
bin_SCRIPTS =
noinst_SCRIPTS =
EXTRA_SCRIPTS =
dist_bin_SCRIPTS =
desktopdir = $(datadir)/applications
icondir = $(datadir)/icons/hicolor
desktop_DATA =
nobase_icon_DATA =
CLEAN_LOCAL_TARGETS =
TESTS =
TEST_EXTENSIONS =
XFAIL_TESTS =
SUBDIRS =
SUBDIRS += m4
SUBDIRS += include
# whois is dead
# SUBDIRS += admin-py
SUBDIRS += pkg-info
SUBDIRS += palm-scripts
SUBDIRS += traffic
dist_doc_DATA = README.md
doc_DATA = AUTHORS NEWS
ACLOCAL_AMFLAGS = --install
EXTRA_DIST += LICENSE
BUILT_SOURCES += package-subst
EXTRA_DIST += package-subst.in
CLEANFILES += package-subst
package-subst: package-subst.in Makefile
$(SED) \
-e 's|[@]MKDIR_P@|$(MKDIR_P)|g' \
-e 's|[@]SED@|$(SED)|g' \
-e 's|[@]PACKAGE_NAME@|$(PACKAGE_NAME)|g' \
-e 's|[@]PACKAGE_TARNAME@|$(PACKAGE_TARNAME)|g' \
-e 's|[@]PACKAGE_VERSION@|$(PACKAGE_VERSION)|g' \
< $(srcdir)/package-subst.in > package-subst
chmod +x package-subst
# Interface variables to be used in included Makefile-files
# Does not work in subdir Makefile.am!
#
# foo/bar: foo/bar.in $(PACKAGE_SUBST_DEP)
# $(PACKAGE_SUBST) $(srcdir)/foo/bar.in foo/bar
#
PACKAGE_SUBST = ./package-subst
PACKAGE_SUBST_DEP = package-subst
include build-helpers/package-version.mk
# include binary-test/Makefile-files
include bing/Makefile-files
include cdburn/Makefile-files
include colfilter/Makefile-files
include firefox-killer/Makefile-files
include gnome-fixes/Makefile-files
include list-debuginfo-rpms/Makefile-files
include np/Makefile-files
include one/Makefile-files
include params/Makefile-files
include pdf2minibook/Makefile-files
include percheck/Makefile-files
include profile/Makefile-files
include ps2lj4/Makefile-files
include restart-gnome-shell/Makefile-files
include strace-normalize/Makefile-files
include umlxterm/Makefile-files
include watch-xsel/Makefile-files
include xnest/Makefile-files
include m4/ndim-build-rpms.mk
dist-hook: dist-hook-rm-INSTALL-file
dist-hook-rm-INSTALL-file:
rm -f "$(distdir)/INSTALL"
upload: $(SPECFILE) $(srcdir)/README.md $(srcdir)/NEWS dist srpm
rsync -avz --progress \
$(SPECFILE) \
$(srcdir)/README.md $(srcdir)/NEWS \
$(srcdir)/misc-scripts/list-debuginfo-rpms \
$(distdir).tar.xz \
$(RSYNC_HOST):n-dimensional.de/software/$(PACKAGE_TARNAME)/
clean-local: $(CLEAN_LOCAL_TARGETS)
# End of file.