summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 03337053267d33e2e430f106fc4bd22048f0a2ba (plain)
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
# few needed variables

stampdir = $(top_builddir)/build/stamp
pkgconfigdir = $(libdir)/pkgconfig
ooo_prefix = @OOO_PREFIX@

# what to add to the package

# TODO
EXTRA_DIST = 

# TODO more in dist-hook, likeremove .o's in dmake, stuff in build/stamp, etc.
# [basically everything that we have in .gitignores ;-)]
dist-hook:
	git log --date=short --pretty="format:@%cd  %an  <%ae>  [%H]%n%n%s%n%n%e%b" | sed -e "s|^\([^@]\)|\t\1|" -e "s|^@||" >$(distdir)/ChangeLog
	rm -rf $(distdir)/*/unxlng*.pro

# rules to execute

all-local: $(stampdir)/all

# TODO
clean-local:

# TODO
distclean-local:

# TODO
install-data-local: $(stampdir)/all

$(stampdir)/all: buildenv
	( . buildenv ; cd build ; build.pl --all ) && touch $@