blob: 571511b4a66709f134542a13c42d81096456547c (
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
|
SUBDIRS = \
build \
tdegtk \
rc \
tests
ACLOCAL_AMFLAGS = -I build
EXTRA_DIST = autogen.sh COPYING
DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper
MAINTAINERCLEANFILES = \
build/compile \
build/config.guess \
build/config.sub \
build/depcomp \
build/install-sh \
build/ltmain.sh \
build/missing \
Makefile.in \
config.h.in \
configure \
aclocal.m4
release: dist
make $(PACKAGE)-$(VERSION).tar.gz.md5
make $(PACKAGE)-$(VERSION).tar.bz2.md5
%.md5: %
md5sum $< > $@
|