blob: c2bd2030ca5746506eefe48c5a3fb802f314fd92 (
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
33
34
35
36
|
# @configure_input@
# Modify these top variables.
SUBDIRS =
EXTRA_DIST = README \
create_tables.sql \
make_combined_log.pl \
mysql_import_combined_log.pl
#Don't modify anything below here
srcdir = @abs_srcdir@
builddir = @abs_builddir@
STD_DIST = Makefile.in
DISTFILES = $(STD_DIST) $(EXTRA_DIST)
all:
install:
update:
clean:
distclean: clean
$(RM) Makefile
local-dist: $(DISTFILES)
mkdir -p $(DESTDIR)
cp -dp --parents $(DISTFILES) $(DESTDIR)
.PHONY: include all-subdirs update-subdirs install-subdirs \
clean-subdirs distclean-subdirs dist
|