52273b6c03
This is a direct import from http://github.com/magcius/sweettooth-plugin . All the source code is the same, as it had no branding. Everything else is just renaming and modifying the "build system" to work with gnome-shell's existing one. https://bugzilla.gnome.org/show_bug.cgi?id=658070
22 lines
559 B
Makefile
22 lines
559 B
Makefile
# Point to our macro directory and pick up user flags from the environment
|
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
|
|
SUBDIRS = data js src browser-plugin tests po man
|
|
|
|
EXTRA_DIST = \
|
|
.project \
|
|
.settings \
|
|
autogen.sh \
|
|
tools/check-for-missing.py
|
|
|
|
# These are files checked into Git that we don't want to distribute
|
|
DIST_EXCLUDE = \
|
|
.gitignore \
|
|
gnome-shell.doap \
|
|
MAINTAINERS \
|
|
tools/build/*
|
|
|
|
distcheck-hook:
|
|
@echo "Checking disted files against files in git"
|
|
@$(srcdir)/tools/check-for-missing.py $(srcdir) $(distdir) $(DIST_EXCLUDE)
|